From 8c4778379b7d92e0b3b6a1c47236c6d341a35779 Mon Sep 17 00:00:00 2001 From: Ben Parsons <9parsonsb@gmail.com> Date: Sun, 23 Jul 2023 11:39:54 -0400 Subject: [PATCH] CI Updates (#3) Co-authored-by: Ben Parsons <9parsonsb@gmail.com> Co-committed-by: Ben Parsons <9parsonsb@gmail.com> --- .gitea/workflows/build.yml | 9 ++++++++- .gitea/workflows/deploy.yml | 23 +++++++++++++---------- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a967548..a661c65 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -21,4 +21,11 @@ jobs: - name: โœ… svelte-check run: npm run check - name: ๐Ÿ”จ Build project - run: npm run build \ No newline at end of file + 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 \ No newline at end of file diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index b4efe91..cacb9a1 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -5,22 +5,25 @@ on: tags: - '*' -runs-on: ubuntu-latest:host +runs-on: selfhost jobs: deploy: needs: build - runs-on: ubuntu-latest + runs-on: selfhost steps: - uses: actions/checkout@v2 - - 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 + - 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 + echo https://git.quartznet.info/api/packages/quartznet/generic/artifacts/ref-${{ gitea.sha }}/build-${{ gitea.sha }}.tar.gz + - name: extract artifact + run: | + tar -xvzf build.tar.gz + - 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