Skip to content

Commit

Permalink
use values from inputs or dispatch event
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayali M authored and Sayali M committed Jun 28, 2024
1 parent e310f93 commit b673a7a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/update-oss-pro-version-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:

- name: Update docs
run: |
LATEST_VERSION="${{ github.event.client_payload.latest_version }}"
PREVIOUS_VERSION="${{ github.event.client_payload.previous_version }}"
echo "Updating docs with OSS version: ${{ github.event.client_payload.latest_version }}"
LATEST_VERSION="${{ github.event.client_payload.latest_version || github.event.inputs.latest_version }} "
PREVIOUS_VERSION="${{ github.event.client_payload.previous_version || github.event.inputs.previous_version }}"
echo "Updating docs with OSS version: ${{ github.event.client_payload.latest_version || github.event.inputs.latest_version }}"
sed -i "s/${PREVIOUS_VERSION}/${LATEST_VERSION}/g" ${{ github.workspace }}/Content/Z_Resources/Snippets/text/start-download-files.flsnp
sed -i "s/${PREVIOUS_VERSION}/${LATEST_VERSION}/g" ${{ github.workspace }}/Project/VariableSets/software-versions.flvar
Expand All @@ -32,6 +32,7 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "liquibot"
git add .
git diff --cached --exit-code || exit 0 # Check if there are changes to commit
git commit -m "Replace OSS and PRO ${{ github.event.client_payload.previous_version }} version with ${{ github.event.client_payload.latest_version }}"
git push
Expand Down

0 comments on commit b673a7a

Please sign in to comment.