Skip to content

Commit

Permalink
Fixed module versions support for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
bczoma committed Mar 7, 2024
1 parent 195d736 commit dbc6955
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/verify-registry-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,13 @@ jobs:

- name: Setup token and patch module with release information
run: |
MODULENAME=rest-delivery
if [ "${{ github.event.inputs.public_release }}" == "false" ] ; then
echo Internal release
MODULE_REF="app.terraform.io/SolaceDev/jndi/solacebroker"
MODULE_REF="app.terraform.io/SolaceDev/$MODULENAME/solacebroker"
else
echo Public release
MODULE_REF="SolaceProducts/jndi/solacebroker"
MODULE_REF="SolaceProducts/$MODULENAME/solacebroker"
fi
ci/scripts/test-module.sh ci/module-test/ "" $MODULE_REF "${{ github.event.inputs.release_version }}"

0 comments on commit dbc6955

Please sign in to comment.