-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure artifact download comes from the same commit sha in applicatio…
…n workflows
- Loading branch information
1 parent
6809459
commit 28d79cb
Showing
2 changed files
with
9 additions
and
6 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 |
---|---|---|
|
@@ -40,6 +40,7 @@ jobs: | |
- name: Download image | ||
uses: ishworkh/[email protected] | ||
with: | ||
commit_sha: ${{ github.event.workflow_run.head_commit.id }} | ||
image: monitorfish-app:${{ env.VERSION }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
workflow: "Application Build" | ||
|
@@ -53,6 +54,6 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
if: ${{ always() }} | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
name: Application Deployment | ||
conclusion: ${{ job.status }} | ||
name: Application Deployment | ||
token: ${{ secrets.GITHUB_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 |
---|---|---|
|
@@ -45,6 +45,7 @@ jobs: | |
- name: Download image | ||
uses: ishworkh/[email protected] | ||
with: | ||
commit_sha: ${{ github.event.workflow_run.head_commit.id }} | ||
image: monitorfish-app:${{ env.VERSION }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
workflow: "Application Build" | ||
|
@@ -89,9 +90,9 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
if: ${{ always() }} | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
name: Application Cypress E2E tests | ||
conclusion: ${{ job.status }} | ||
name: Application Cypress E2E tests | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
e2e_multi_windows_test: | ||
name: Run E2E multi windows tests | ||
|
@@ -115,6 +116,7 @@ jobs: | |
- name: Download image | ||
uses: ishworkh/[email protected] | ||
with: | ||
commit_sha: ${{ github.event.workflow_run.head_commit.id }} | ||
image: monitorfish-app:${{ env.VERSION }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
workflow: "Application Build" | ||
|
@@ -147,6 +149,6 @@ jobs: | |
- uses: LouisBrunner/[email protected] | ||
if: ${{ always() }} | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
name: Application Puppeteer E2E tests | ||
conclusion: ${{ job.status }} | ||
name: Application Puppeteer E2E tests | ||
token: ${{ secrets.GITHUB_TOKEN }} |