Skip to content

Commit

Permalink
Merge pull request anchore#296 from anchore/fix-release-pipeline
Browse files Browse the repository at this point in the history
Fix release pipeline quality gate
  • Loading branch information
wagoodman committed Apr 14, 2021
2 parents 9d94879 + a0767aa commit ebe23d5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
# This check name is defined as the circle-ci workflow name (in .github/workflows/static-unit-integration.yaml)
checkName: "Static-Analysis (1.x, ubuntu-latest)"
checkName: "Static-Analysis (1.16.x, ubuntu-latest)"
ref: ${{ github.event.pull_request.head.sha || github.sha }}

- name: Check unit + integration results (latest go version)
Expand All @@ -40,7 +40,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
# This check name is defined as the circle-ci workflow name (in .github/workflows/static-unit-integration.yaml)
checkName: "Tests (1.x, ubuntu-latest)"
checkName: "Tests (1.16.x, ubuntu-latest)"
ref: ${{ github.event.pull_request.head.sha || github.sha }}

- name: Build snapshot artifacts
Expand All @@ -65,7 +65,8 @@ jobs:
if: steps.static-analysis.outputs.conclusion != 'success' || steps.unit-integration.outputs.conclusion != 'success' || steps.inline-compare.outputs.conclusion != 'success' || steps.snapshot.outputs.conclusion != 'success'
run: |
echo "Static Analysis Status: ${{ steps.static-analysis.conclusion }}"
echo "Unit & Integration Test Status: ${{ steps.unit-integration.outputs.conclusion }}" echo "Build Snapshot Artifacts Status: ${{ steps.snapshot.outputs.conclusion }}"
echo "Unit & Integration Test Status: ${{ steps.unit-integration.outputs.conclusion }}"
echo "Build Snapshot Artifacts Status: ${{ steps.snapshot.outputs.conclusion }}"
echo "Inline Compare Status: ${{ steps.inline-compare.outputs.conclusion }}"
false
Expand Down

0 comments on commit ebe23d5

Please sign in to comment.