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