Test-Artifacts-CI/.gitea/workflows/build.yml
Radim Lipovčan 548378e5d1
Some checks failed
Build Folio / Explore-Gitea-Actions (push) Failing after 1m45s
Aktualizovat .gitea/workflows/build.yml
2024-12-11 20:37:23 +01:00

28 lines
735 B
YAML

name: Build Folio
run-name: Build Folio latest Jar
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Setup git
run: |
echo "asdfdf" > text.txt
ls
cat text.txt
- name: Build | Prepare packages
run: |
echo "asdasdf" > text.txt
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: text.txt
- name: Use Go Action
id: use-go-action
uses: https://gitea.com/actions/release-action@main
with:
files: |-
text.txt
api_key: '${{secrets.CLONE_GITEA_TOKEN}}'