Skip to content

Commit

Permalink
🐞 fix (ci): correct sed command in pre action
Browse files Browse the repository at this point in the history
  • Loading branch information
dianlight committed Apr 22, 2024
1 parent eada96f commit ac2c819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Update version in ${{ steps.extract_project.outputs.name }}/CHANGELOG.md
continue-on-error: true
shell: bash
run: sed -i '1,/## ${{ steps.version_set.outputs.value_old }}/{s//## ${{ steps.version_set.outputs.value_new }}/}' ${{ steps.extract_project.outputs.name }}/CHANGELOG.md
run: sed -i 's/## ${{ steps.version_set.outputs.value_old }}/## ${{ steps.version_set.outputs.value_new }}/' ${{ steps.extract_project.outputs.name }}/CHANGELOG.md

- name: Create pull request for Beta Repository
uses: thzois/[email protected]
Expand Down

0 comments on commit ac2c819

Please sign in to comment.