Skip to content

Commit

Permalink
Try echo'ing pwd in update version in mix.exs step
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverswitzer committed Nov 26, 2024
1 parent 7be6dfe commit fea92f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ jobs:
env:
RELEASE_VERSION: ${{ steps.version.outputs.version }}
run: |
echo pwd
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
sed -i '' 's/version: ".*"/version: "'${RELEASE_VERSION#v}'"/g' mix.exs mix.exs
sed -i '' 's/version: ".*"/version: "'${RELEASE_VERSION#v}'"/g' mix.exs
git add mix.exs
git commit -m "chore: Bump version to ${RELEASE_VERSION}"
git push
Expand Down

0 comments on commit fea92f7

Please sign in to comment.