Update .forgejo/workflows/demo.yaml
All checks were successful
/ test-docker (push) Successful in 1s
/ test-dind (push) Successful in 2s

This commit is contained in:
Neshura 2023-12-29 02:24:26 +00:00
parent ce6227ee99
commit dfaa56c973

View file

@ -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