Skip to content

Commit

Permalink
Fix YAML syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmitr committed May 29, 2024
1 parent 6bd3080 commit 94d1d0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ jobs:
steps:
- name: Checkout ldk-node-go master
uses: actions/checkout@v4
if: '${{ env.BRANCH_NAME }}' == 'main'
if: ${{ env.BRANCH_NAME == 'main' }}
with:
repository: getAlby/ldk-node-go
ssh-key: ${{ secrets.LDK_NODE_GO_DEPLOY_KEY }}

- name: Checkout ldk-node-go branch
uses: actions/checkout@v4
if: '${{ env.BRANCH_NAME }}' != 'main'
if: ${{ env.BRANCH_NAME != 'main' }}
with:
repository: getAlby/ldk-node-go
ssh-key: ${{ secrets.LDK_NODE_GO_DEPLOY_KEY }}
Expand Down

0 comments on commit 94d1d0e

Please sign in to comment.