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
|
- run: docker run hello-world
|
||||||
-
|
-
|
||||||
name: test
|
name: test
|
||||||
if: ${{ search(github.ref_name, 'a') }}
|
if: contains(github.ref_name, 'a')
|
||||||
run: echo works
|
run: echo works
|
||||||
-
|
-
|
||||||
name: test inverse
|
name: test inverse
|
||||||
if: ${{ ! search(github.ref_name, 'a') }}
|
if: ! contains(github.ref_name, 'a')
|
||||||
run: echo works as well
|
run: echo works as well
|
Loading…
Reference in a new issue