Update .forgejo/workflows/demo.yaml
This commit is contained in:
parent
5d28479ac8
commit
ce6227ee99
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: ${{ search(github.ref_name, 'a') }}
|
||||||
run: echo works
|
run: echo works
|
||||||
-
|
-
|
||||||
name: test inverse
|
name: test inverse
|
||||||
if: ! search(github.ref_name, 'a')
|
if: ${{ ! search(github.ref_name, 'a') }}
|
||||||
run: echo works as well
|
run: echo works as well
|
Loading…
Reference in a new issue