Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
- name: Release - Checkout repository
uses: actions/checkout@v6
with:
# Fetch tags so workflow_dispatch can resolve and checkout the target tag
fetch-tags: true
# Explicitly checkout the tag ref to ensure we build the correct commit
# For tag pushes: refs/tags/vX.Y.Z
# For workflow_dispatch: refs/heads/<branch> (will be validated below)
Expand Down Expand Up @@ -91,11 +93,11 @@ jobs:
- name: Release - Build server
run: npm run build -w server

- name: Release - Initialize CodeQL
uses: github/codeql-action/init@v3
- name: Release - Setup CodeQL environment
uses: ./.github/actions/setup-codeql-environment
with:
languages: javascript-typescript
tools: latest
add-to-path: true
install-language-runtimes: false

- name: Release - Publish CodeQL tool query packs
if: startsWith(github.ref, 'refs/tags/')
Expand Down