36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
runs-on: ubuntu-latest:host
|
|
|
|
jobs:
|
|
deploy:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: get artifact
|
|
run: |
|
|
curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \
|
|
https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz > build.tar.gz
|
|
https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz
|
|
- name: 🔧 Setup node
|
|
uses: https://github.com/actions/setup-node@v3
|
|
- name: 🧱 Install node packages
|
|
run: npm ci
|
|
- name: ✅ svelte-check
|
|
run: npm run check
|
|
- name: 🔨 Build project
|
|
run: npm run build
|
|
- run: ls -la build
|
|
- run: ls -la /www/
|
|
- run: ls -la /www/svelte/
|
|
- name: 🧹 Clean Deploy Area
|
|
run: rm -rf /www/svelte/build
|
|
- name: 📦 Deploy
|
|
run: mv build /www/svelte/
|