We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46cafbc commit a3029c3Copy full SHA for a3029c3
1 file changed
.github/workflows/update-proxy-release.yml
@@ -21,6 +21,14 @@ jobs:
21
env:
22
RELEASE_TAG: ${{ inputs.tag || 'codeql-bundle-v2.22.0' }}
23
steps:
24
+ - name: Check release tag format
25
+ shell: bash
26
+ run: |
27
+ if ! [[ $RELEASE_TAG =~ "^codeql-bundle-v[0-9]+\.[0-9]+\.[0-9]+$" ]]; then
28
+ echo "Invalid release tag: expected a CodeQL bundle tag in the 'codeql-bundle-vM.N.P' format."
29
+ exit 1
30
+ fi
31
+
32
- name: Install Node
33
uses: actions/setup-node@v4
34
0 commit comments