-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc72b01
commit 0c0034b
Showing
1 changed file
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,10 +28,6 @@ jobs: | |
RELEASE_BRANCH: 'release/${{ inputs.release_version_name }}' | ||
|
||
steps: | ||
- id: debug | ||
name: Print environment variables and event payload | ||
uses: hmarr/[email protected] | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
with: | ||
|
@@ -52,11 +48,12 @@ jobs: | |
run: python scripts/updateVersionName.py ${{ env.RELEASE_VERSION }} | ||
|
||
- name: Commit and Push Changes | ||
uses: flex-development/[email protected] | ||
with: | ||
message: 'Update version to ${{ env.RELEASE_VERSION }}' | ||
ref: ${{ env.RELEASE_BRANCH }} | ||
token: ${{ secrets.DHIS2_BOT_GITHUB_TOKEN }} | ||
run: | | ||
git config user.name "github-actions[bot]" | ||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git add . | ||
git commit -m "generated" | ||
git push | ||
update_version: | ||
if: false | ||
|