Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
OmOmofonmwan committed Jun 13, 2024
1 parent c174a36 commit efe8fb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reusable_release_poc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
release_version:
type: string
required: true
snapshot_version:
development_version:
type: string
required: true

Expand All @@ -20,7 +20,7 @@ jobs:
steps:
- name: Print Versions
run: |
echo "Next Dev Version: ${{inputs.snapshot_version}}"
echo "Next Dev Version: ${{inputs.development_version}}"
echo "Next Release Version: ${{inputs.release_version}}"
- name: Checkout Code Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -59,13 +59,13 @@ jobs:
java-version: '21'
distribution: 'temurin'
- name: Set Dev Version
run: mvn -B versions:set -DnewVersion=${{github.event.inputs.snapshot_version}}-SNAPSHOT -DgenerateBackupPoms=false
run: mvn -B versions:set -DnewVersion=${{github.event.inputs.development_version}}-SNAPSHOT -DgenerateBackupPoms=false
- name: Commit & Push
run: |
git add .
git config user.name fda_shield_omoruyi
git config user.email [email protected]
git commit -m 'Set next dev version to ${{github.event.inputs.snapshot_version}}-SNAPSHOT'
git commit -m 'Set next dev version to ${{github.event.inputs.development_version}}-SNAPSHOT'
git push origin HEAD:main
git push --tags origin
Expand Down

0 comments on commit efe8fb7

Please sign in to comment.