Skip to content

Commit

Permalink
Changed the way forged url is passed to last step
Browse files Browse the repository at this point in the history
  • Loading branch information
troll-os committed Aug 29, 2024
1 parent 5a3eb37 commit 5cf593f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-feature-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ jobs:
additional-vars: |
{ "openbas_version": "${{steps.meta.outputs.version}}", "openbas_config": ${{ inputs.openbas_config }}, "image_digest": "${{ needs.openbas-platform.outputs.dockerBuildDigest }}" }
- name: Forge URL to match playbook limitations
id: url_forge
id: urlforge
run: |
url=$(echo ${{steps.meta.outputs.version}} | cut -c 1-20 | sed 's/-*$//')
echo "url=$url" >> $env:GITHUB_OUTPUT
url=$(echo "${{steps.meta.outputs.version}}" | cut -c 1-20 | sed 's/-*$//')
echo "url=$url" >> $GITHUB_OUTPUT
- name: display URL
run: echo "https://${{steps.url_forge.outputs.url}}.obas.dev.filigran.io"
run: echo "https://${{steps.urlforge.outputs.url}}.obas.dev.filigran.io"

0 comments on commit 5cf593f

Please sign in to comment.