Files
file-whizz/.github/workflows/deploy.yml
T
klemek a100bf51d7
Deploy / Deploy to Stapler (push) Successful in 20s
ci: deploy to stapler
2026-05-02 16:25:33 +02:00

26 lines
599 B
YAML

name: Deploy
concurrency:
group: deploy-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- "main"
jobs:
stapler:
name: "Deploy to Stapler"
runs-on: ubuntu-latest
if: ${{ vars.STAPLER_TARGET != '' }}
steps:
- name: Compress production files
run: tar -czf /tmp/dist.tar.gz .
- name: Upload to Stapler server
run: |
curl -s -X PUT --data-binary "@/tmp/dist.tar.gz" \
-H 'X-Token: ${{ secrets.STAPLER_TOKEN }}' \
${{ vars.STAPLER_CURL_ARGS }} \
${{ vars.STAPLER_TARGET }}