Skip to content
Merged
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
9 changes: 3 additions & 6 deletions .github/workflows/codeq-gcs-upload.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Upload CodeQ to GCS

on:
push:
branches: [main]
workflow_dispatch:
inputs:
version:
Expand All @@ -19,10 +21,6 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: linux-x64
build-os: linux
build-arch: x64
- os: ubuntu-latest
target: linux-arm64
build-os: linux
Expand Down Expand Up @@ -190,7 +188,7 @@ jobs:

echo ""
echo "Download URLs:"
for target in darwin-arm64 darwin-x64 linux-arm64 linux-x64 windows-x64; do
for target in darwin-arm64 darwin-x64 linux-arm64 windows-x64; do
echo " $target: https://storage.googleapis.com/${{ env.GCS_BUCKET }}/$VERSION/$target/codeq"
done

Expand All @@ -205,7 +203,6 @@ jobs:
"darwin-arm64": "https://storage.googleapis.com/${{ env.GCS_BUCKET }}/$VERSION/darwin-arm64/codeq",
"darwin-x64": "https://storage.googleapis.com/${{ env.GCS_BUCKET }}/$VERSION/darwin-x64/codeq",
"linux-arm64": "https://storage.googleapis.com/${{ env.GCS_BUCKET }}/$VERSION/linux-arm64/codeq",
"linux-x64": "https://storage.googleapis.com/${{ env.GCS_BUCKET }}/$VERSION/linux-x64/codeq",
"windows-x64": "https://storage.googleapis.com/${{ env.GCS_BUCKET }}/$VERSION/windows-x64/codeq.exe"
}
}
Expand Down