update workflows
This commit is contained in:
parent
46928ad01d
commit
a4ebb03ce7
@ -1,5 +1,11 @@
|
|||||||
name: Build
|
name: Build
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
name: Build
|
name: Deploy
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- '*'
|
- '*'
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest:host
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
deploy:
|
||||||
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -19,8 +21,7 @@ jobs:
|
|||||||
run: npm run check
|
run: npm run check
|
||||||
- name: 🔨 Build project
|
- name: 🔨 Build project
|
||||||
run: npm run build
|
run: npm run build
|
||||||
- name: 📦 Zip project
|
- name: 🧹 Clean Deploy Area
|
||||||
run: tar -czf build.zip build
|
run: rm -rf /www/svelte/build
|
||||||
- name: ☁️ Upload artifact
|
- name: 📦 Deploy
|
||||||
run: |
|
run: mv build /www/svelte/
|
||||||
curl -T build.zip -H 'Authorization: token ${{ secrets.PACKAGE_TOKEN }}' 'https://minijack@git.quartznet.info/api/packages/quartznet/generic/quartznet/${{ gitea.ref }}/quartznet-${{ gitea.ref }}.zip'
|
|
Loading…
x
Reference in New Issue
Block a user