Skip to content

Commit

Permalink
proper version
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsitoPuglisi committed Jun 28, 2024
1 parent 0aa95b3 commit b0b0a57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rc-update-test-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
next_version:
description: 'Next version. Specify <major.minor>, e.g. 6.4 (Do NOT include -SNAPSHOT, will be added automatically)'
description: 'SDK version, e.g. 6.9.0-SNAPSHOT'
required: true
workflow_call:
inputs:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Set next SDK version
run: |
git checkout master
sed -i -r "s#swazzler_version = ([^\']+)#swazzler_version = ${{ github.event.inputs.next_version }}.0-SNAPSHOT#" gradle.properties
sed -i -r "s#swazzler_version([^\']+)#swazzler_version = ${{ github.event.inputs.next_version }}#" gradle.properties
git add gradle.properties
git commit -m "CI/CD: set next version: ${{ github.event.inputs.next_version }}.0-SNAPSHOT"
git commit -m "CI/CD: set next version: ${{ github.event.inputs.next_version }}"
git push

0 comments on commit b0b0a57

Please sign in to comment.