CI Updates (#3)

Co-authored-by: Ben Parsons <9parsonsb@gmail.com>
Co-committed-by: Ben Parsons <9parsonsb@gmail.com>
This commit is contained in:
Ben Parsons 2023-07-23 11:39:54 -04:00 committed by Chris Dill
parent 3ce19067c7
commit 8c4778379b
2 changed files with 21 additions and 11 deletions

View File

@ -21,4 +21,11 @@ jobs:
- name: ✅ svelte-check - name: ✅ svelte-check
run: npm run check run: npm run check
- name: 🔨 Build project - name: 🔨 Build project
run: npm run build run: npm run build
- name: upload artifact
run: |
tar -czf build.tar.gz build
curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \
--upload-file build.tar.gz \
https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz
echo https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz

View File

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