Skip to content

Commit

Permalink
Fix if syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
fasmat committed Jan 23, 2025
1 parent 6a379cf commit 50196d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
mkdir build-zip
cp ${{ env.OUTNAME }}.zip build-zip
- name: Install aws-cli
if: ${{ matrix.os != '[self-hosted, macOS, ARM64, go-spacemesh]' }}
if: ${{ !contains(matrix.os, 'self-hosted') }}
uses: unfor19/install-aws-cli-action@v1
with:
version: 2.22.33
Expand All @@ -116,7 +116,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_GO_SM_BUILDS_SECRET_ACCESS_KEY }}
AWS_REGION: us-east-1
- name: Install coreutils
if: ${{ matrix.os == 'macos-13' || matrix.os == '[self-hosted, macOS, ARM64, go-spacemesh]' }}
if: ${{ matrix.os == 'macos-13' }}
run: brew install coreutils
- name: Calculate the hashsum of the zip file
if: ${{ matrix.os != 'windows-2022' }}
Expand Down

0 comments on commit 50196d6

Please sign in to comment.