Update .forgejo/workflows/demo.yaml
This commit is contained in:
parent
9158b7b39d
commit
5d28479ac8
1 changed files with 9 additions and 1 deletions
|
@ -7,4 +7,12 @@ jobs:
|
||||||
test-dind:
|
test-dind:
|
||||||
runs-on: dind
|
runs-on: dind
|
||||||
steps:
|
steps:
|
||||||
- run: docker run hello-world
|
- run: docker run hello-world
|
||||||
|
-
|
||||||
|
name: test
|
||||||
|
if: search(github.ref_name, 'a')
|
||||||
|
run: echo works
|
||||||
|
-
|
||||||
|
name: test inverse
|
||||||
|
if: ! search(github.ref_name, 'a')
|
||||||
|
run: echo works as well
|
Loading…
Reference in a new issue