pipeline
All checks were successful
/ upload (push) Successful in 7s

This commit is contained in:
pavel 2026-02-05 23:10:00 +01:00
commit c0b3281dab
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,14 @@
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/todo-all.jar \
"${{ github.server_url }}/api/packages/${{ github.repository_owner }}/generic/todo/${{ github.ref_name }}/app.jar"