We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b7342 commit 5d5a111Copy full SHA for 5d5a111
.github/workflows/release.yml
@@ -52,8 +52,11 @@ jobs:
52
53
- name: Prepare for release metadata
54
shell: bash
55
+ env:
56
+ NEW_VERSION: ${{ steps.snapshotVersions.new_snapshot_version }}
57
+ CUR_SNAPSHOT_VERSION: ${{ steps.snapshotVersions.cur_snapshot_version }}
58
run: |
- sed -i.bak "s/${{ steps.snapshotVersions.cur_snapshot_version }}/${{ steps.snapshotVersions.new_snapshot_version }}/g" gradle.properties
59
+ sed -i.bak "s/${CUR_SNAPSHOT_VERSION}/${NEW_VERSION}/g" gradle.properties
60
61
- name: Commit gradle.properties and set tag for v${{ inputs.version }}
62
uses: IABTechLab/uid2-shared-actions/actions/commit_pr_and_merge@v2
0 commit comments