Skip to content

Commit

Permalink
ci: fix commit message on release update
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Jan 31, 2024
1 parent ee3e417 commit 2dfb013
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/bump_version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ runs:
)
sed -i 's/version = "[^"]*";$/version = "${{ inputs.version }}";/' flake.nix
commit_msg="flake: ${current} -> ${{ inputs.version }}"
echo "commit-msg=${commit_msg}" | tee -a "$GITHUB_OUTPUT"
if [[ "${{ inputs.commit }}" == "false" ]]; then
exit 0
fi
commit_msg="flake: ${current} -> ${{ inputs.version }}"
echo "commit-msg=${commit_msg}" | tee -a "$GITHUB_OUTPUT"
git config --global user.name "edgelessci"
git config --global user.email "[email protected]"
git add flake.nix
Expand Down

0 comments on commit 2dfb013

Please sign in to comment.