Skip to content

Commit

Permalink
Fix error in Release workflow of CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja authored Nov 18, 2024
1 parent fa6eafa commit 21135c6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
needs: get-releases
if: needs.get-releases.outputs.si != needs.get-releases.outputs.lib
steps:
- uses: actions/checkout@v4
with:
# Ensure we are checked out on the develop branch
ref: develop
# Ensure custom credentials are used when pushing
persist-credentials: false
# Fetch everything so we can checkout master
fetch-depth: 0
- name: Bump version
run: |
sed -i 's/"version": "${{ needs.get-releases.outputs.lib }}",/"version": "${{ needs.get-releases.outputs.si }}",/' package.json
Expand Down

0 comments on commit 21135c6

Please # to comment.