diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 8b476cd..4a97465 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,11 +15,4 @@ jobs: - name: ✅ svelte-check run: npm run check - name: 🔨 Build project - run: npm run build - - name: 📦 Zip project - run: tar -czf build.zip build - - name: ☁️ Upload artifact - uses: actions/upload-artifact@v2 - with: - name: site - path: build.zip + run: npm run build \ No newline at end of file diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 0000000..cba39d4 --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,26 @@ +name: Build +on: + push: + tag: + - '*' + +runs-on: ubuntu-latest + +jobs: + build: + runs-on: ubuntu-latest + 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: 📦 Zip project + run: tar -czf build.zip build + - name: ☁️ Upload artifact + # bash curl put git.quartznet.info/api/packages/quartznet/generic/quartznet/${{ gitea.ref }}/quartznet-${{ gitea.ref }}.zip + run: 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"