Update .forgejo/workflows/demo.yaml
Some checks failed
/ test-docker (push) Successful in 1s
/ test-dind (push) Failing after 2s

This commit is contained in:
Neshura 2023-12-29 02:23:37 +00:00
parent 5d28479ac8
commit ce6227ee99

View file

@ -10,9 +10,9 @@ jobs:
- run: docker run hello-world
-
name: test
if: search(github.ref_name, 'a')
if: ${{ search(github.ref_name, 'a') }}
run: echo works
-
name: test inverse
if: ! search(github.ref_name, 'a')
if: ${{ ! search(github.ref_name, 'a') }}
run: echo works as well