Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
saliceti committed Sep 19, 2023
1 parent b695b49 commit 1261fe9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ jobs:
echo "::error ::Tag ${{ github.event.inputs.tag }} cannot be found in releases"
exit 1
- name: Get Short SHA
id: vars
run: |
echo "sha_short=$(echo ${{steps.tag_id.outputs.release_sha}} | cut -c -7)" >> $GITHUB_OUTPUT
# - name: Trigger Deployment to ${{github.event.inputs.environment}}
# uses: ./.github/workflows/actions/deploy
# id: deploy
Expand All @@ -72,7 +77,7 @@ jobs:
id: deploy
with:
environment: "${{github.event.inputs.environment}}"
sha: "${{steps.tag_id.outputs.release_sha}}"
sha: "${{ steps.vars.outputs.sha_short }}"
azure-credentials: ${{ secrets.AZURE_CREDENTIALS }}

- name: Slack Release Notification
Expand Down

0 comments on commit 1261fe9

Please sign in to comment.