.github/workflows/e2e.go.workflow_dispatch.main.adversarial-verifier-binary.slsa3.yml #61
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
on: | ||
# Only triggered manually for pre-release. | ||
workflow_dispatch: | ||
permissions: read-all | ||
jobs: | ||
build: | ||
permissions: | ||
id-token: write # For signing. | ||
contents: write # For asset uploads. | ||
actions: read # For the entrypoint. | ||
# Update this line: the repo name and the reference | ||
# uses: ianlewis/slsa-github-generator/.github/workflows/[email protected] | ||
# uses: laurentsimon/slsa-github-generator/.github/workflows/[email protected] | ||
uses: kpk47/slsa-github-generator/.github/workflows/[email protected] | ||
Check failure on line 16 in .github/workflows/e2e.go.workflow_dispatch.main.adversarial-verifier-binary.slsa3.yml
|
||
with: | ||
go-version: "1.21" | ||
config-file: .github/configs-go/config-noldflags.yml | ||
if-succeeded: | ||
runs-on: ubuntu-latest | ||
needs: [build] | ||
if: needs.build.result == 'success' | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- run: | | ||
set -euo pipefail | ||
echo "This test should fail" | ||
exit 1 |