-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from draios/SITEOPS-1420/fixmultiarchbuilds-dos
[SITEOPS-1420] fix quotes
- Loading branch information
Showing
2 changed files
with
1 addition
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,17 +26,3 @@ jobs: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- run: | | ||
echo Calculated Next Tag is ${{ steps.tag_version.outputs.new_tag }} | ||
post_slack: | ||
runs-on: ubuntu-latest | ||
needs: tagging | ||
steps: | ||
- name: Post to a Slack channel | ||
if: ${{ success() }} | ||
id: slack_success | ||
uses: slackapi/[email protected] | ||
with: | ||
channel-id: 'sdcadmin-operator' | ||
slack-message: ':cool-doge: `${{github.repository}}` new version: ${{needs.tagging.outputs.next_tag}}' | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -193,7 +193,7 @@ runs: | |
echo "image_platforms=${final_platforms_list}" >> $GITHUB_OUTPUT | ||
- name: Set up QEMU | ||
if: ${{ steps.platforms_list.outputs.image_platforms != "linux/amd64" }} | ||
if: ${{ steps.platforms_list.outputs.image_platforms != 'linux/amd64' }} | ||
id: qemu | ||
uses: docker/[email protected] | ||
with: | ||
|