Skip to content

Commit

Permalink
gh: fix if conditional for rpk packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
r-vasquez committed Jul 22, 2022
1 parent a75457a commit 444abb3
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 444abb3

Please sign in to comment.