From a7bcca3a459e1f00fd6de1193e2ac903f56c04d8 Mon Sep 17 00:00:00 2001 From: Oliver Switzer Date: Tue, 26 Nov 2024 16:24:56 -0500 Subject: [PATCH] Try echo'ing pwd in update version in mix.exs step --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1c44b98..7d876f2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -42,9 +42,11 @@ jobs: env: RELEASE_VERSION: ${{ steps.version.outputs.version }} run: | + echo $(pwd) + echo $(ls -al) 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