Skip to content

Commit

Permalink
Merge pull request #5592 from r-vasquez/fix-package-if
Browse files Browse the repository at this point in the history
gh: fix if conditional for rpk packaging
  • Loading branch information
ivotron committed Jul 23, 2022
2 parents 350c439 + 444abb3 commit 399771c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rpk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} ./build.sh $tag ${{ github.sha }}
- name: Package
if: ${{ ! matrix.os == 'windows'}}
if: ${{ matrix.os != 'windows'}}
working-directory: src/go/rpk/
run: |
zip -j rpk-${{ matrix.os }}-${{ matrix.arch }}.zip ./${{ matrix.os }}-${{ matrix.arch }}/rpk
Expand Down

0 comments on commit 399771c

Please sign in to comment.