name: Deploy Backend Production on: push: tags: - "*" workflow_dispatch: jobs: deploy: runs-on: ubuntu-latest permissions: contents: write steps: - name: Checkout uses: actions/checkout@v4 - name: Install Node.js uses: actions/setup-node@v4 with: node-version: 18 - uses: pnpm/action-setup@v3 name: Install pnpm id: pnpm-install with: version: 8 run_install: false - name: Deploy Backend for ${{ github.ref_name }} run: | cd worker/ echo '${{ secrets.BACKEND_TOML }}' > wrangler.toml pnpm install --no-frozen-lockfile output=$(pnpm run deploy 2>&1) if [ $? -ne 0 ]; then code=$? echo "Command failed with exit code $code" exit $code fi echo "Deployed for tag ${{ github.ref_name }}" env: CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}