Update .forgejo/workflows/demo.yaml
This commit is contained in:
parent
ce6227ee99
commit
dfaa56c973
1 changed files with 2 additions and 2 deletions
|
@ -10,9 +10,9 @@ jobs:
|
|||
- run: docker run hello-world
|
||||
-
|
||||
name: test
|
||||
if: ${{ search(github.ref_name, 'a') }}
|
||||
if: contains(github.ref_name, 'a')
|
||||
run: echo works
|
||||
-
|
||||
name: test inverse
|
||||
if: ${{ ! search(github.ref_name, 'a') }}
|
||||
if: ! contains(github.ref_name, 'a')
|
||||
run: echo works as well
|
Loading…
Reference in a new issue