Skip to content

Tweak production proxy setup (#129) #16

Tweak production proxy setup (#129)

Tweak production proxy setup (#129) #16

Workflow file for this run

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