todo/.forgejo/workflows/pipeline.yaml
pavel 4c53248f27
Some checks failed
/ upload (push) Failing after 8s
pipeline
2026-02-06 00:13:06 +01:00

14 lines
No EOL
457 B
YAML

on: [push]
jobs:
upload:
runs-on: host
steps:
- uses: actions/setup-node@v6
with:
node-version: 24
- uses: actions/checkout@v6
- run: ./gradlew buildFatJar
- run: |
curl --user "${{ github.actor }}:${{ secrets.TOKEN }}" \
--upload-file build/libs/app.jar \
"${{ github.server_url }}/api/packages/${{ github.repository_owner }}/generic/todo/${{ github.ref_name }}/app.jar"