This commit is contained in:
@@ -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 }}
|
||||||
@@ -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
|
|
||||||
Reference in New Issue
Block a user