name: Build on: [push] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout project uses: actions/checkout@v2 - name: 🔧 Install pnpm uses: https://github.com/pnpm/action-setup@v4 with: version: 9 standalone: true run_install: false - name: 🧱 Install packages run: pnpm install - name: ✅ Check project run: pnpm run check - name: 🔨 Build project run: pnpm 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