Skip to content

Commit

Permalink
fix if
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink committed Feb 21, 2024
1 parent 71c736a commit b066d2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
- name: Determine C compiler
run: |
if [ "${{ matrix.goarch }}" = "arm64" ]; then;
if [ "${{ matrix.goarch }}" = "arm64" ]; then
echo "TARGET_CC=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
elif [ "${{ matrix.goarch }}" = "amd64" ]; then;
elif [ "${{ matrix.goarch }}" = "amd64" ]; then
echo "TARGET_CC=x86_64-linux-gnu-gcc" >> $GITHUB_ENV
fi
- uses: wangyoucao577/[email protected]
Expand Down

0 comments on commit b066d2e

Please sign in to comment.