ci: deploy to stapler
Deploy / Deploy to Stapler (push) Successful in 20s

This commit is contained in:
2026-05-02 16:24:58 +02:00
parent ec6a17e051
commit a100bf51d7
2 changed files with 25 additions and 13 deletions
+25
View File
@@ -0,0 +1,25 @@
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 }}
-13
View File
@@ -1,13 +0,0 @@
name: Lint
on: [push]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci
- name: Run ESLint
run: npm run lint