Skip to content

Commit

Permalink
fix: add step names
Browse files Browse the repository at this point in the history
  • Loading branch information
deemp authored and pbrisbin committed Apr 4, 2024
1 parent 20e687e commit 266055b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: stack-action-step
- name: Should fail
id: stack-action-step
continue-on-error: true
uses: ./
with:
working-directory: example
stack-arguments: --resolver bad-resolver
- if: steps.stack-action-step.outcome != 'failure'
- name: Check failure
if: steps.stack-action-step.outcome != 'failure'
run: exit 1

0 comments on commit 266055b

Please sign in to comment.