Skip to content

Commit

Permalink
Wrap in context
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Jan 20, 2024
1 parent a76f846 commit 2519022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gem-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
echo "VERSION_EXISTS=$?" >> $GITHUB_OUTPUT
- name: Publish to GPR
if: steps.checkversionexists.outputs.VERSION_EXISTS == '0'
if: ${{ steps.checkversionexists.outputs.VERSION_EXISTS == 0 }}
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
Expand All @@ -46,7 +46,7 @@ jobs:
OWNER: ${{ github.repository_owner }}

- name: Publish to RubyGems
if: steps.checkversionexists.outputs.VERSION_EXISTS == '0'
if: ${{ steps.checkversionexists.outputs.VERSION_EXISTS == 0 }}
run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
Expand Down

0 comments on commit 2519022

Please sign in to comment.