Tweak production proxy setup (#129) #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write # needed to create tags/releases | |
| actions: write # needed to trigger workflow dispatches | |
| jobs: | |
| release-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # important, we need full history to tag properly | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Run release detect and trigger workflow | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Being explicit here as we want to avoid any dry run | |
| CI: true | |
| run: bun run ./scripts/release-detect.ts |