We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5525263 commit bd8e462Copy full SHA for bd8e462
.github/workflows/build-and-release.yml
@@ -44,7 +44,9 @@ jobs:
44
git fetch origin tims-test-branch
45
git checkout tims-test-branch
46
git commit --allow-empty -m "${{ github.event.inputs.version }} release"
47
- git push origin tims-test-branch
+ # create string of usernma:token for git push
48
+ username-token="release-controller[bot]:${{ steps.app-token.outputs.token }}"
49
+ git push origin tims-test-branch https://[email protected]/github/backup-utils.git
50
echo "commit-sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
51
- name: Echo Success if commit was created
52
if: steps.empty-commit.outputs.commit-sha != ''
0 commit comments