All checks were successful
Build Folio / Explore-Gitea-Actions (push) Successful in 29s
31 lines
736 B
YAML
31 lines
736 B
YAML
name: Build Folio
|
|
run-name: Build Folio latest Jar
|
|
on: [push]
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: A
|
|
run: |
|
|
echo "asdfdf" > text.txt
|
|
ls
|
|
cat text.txt
|
|
|
|
- name: B
|
|
run: |
|
|
echo "asdasdf" > text.txt
|
|
|
|
- name: Artifacts
|
|
uses: christopherhx/gitea-upload-artifact@v4
|
|
with:
|
|
name: test-release
|
|
path: text.txt
|
|
overwrite: true
|
|
if-no-files-found: error
|
|
- name: Release
|
|
uses: akkuman/gitea-release-action@v1
|
|
env:
|
|
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
|
with:
|
|
files: |-
|
|
text.txt |