Shoud make the action work

This commit is contained in:
jobobby04 2020-06-14 17:26:40 -04:00 committed by GitHub
parent ae5acec934
commit 7019adbf8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,11 @@ jobs:
- uses: actions/checkout@master - uses: actions/checkout@master
with: with:
fetch-depth: '0' fetch-depth: '0'
- name: Set SHOULD_RUN flag - name: Set CISKIP flag to false
run: echo ::set-env name=CISKIP::"contains(github.event.action, 'skip-ci')" || "contains(github.event.action, 'skip ci')" || "contains(github.event.action, 'ci skip')" || "contains(github.event.action, 'ci-skip')" run: echo ::set-env name=CISKIP::'false'
- name: Set CISKIP flag if action has ci skip
if: contains(github.event.action, 'skip-ci') || contains(github.event.action, 'skip-ci') || contains(github.event.action, 'skip ci') || contains(github.event.action, 'ci skip') || contains(github.event.action, 'ci-skip')
run: echo ::set-env name=CISKIP::'true'
- name: Exho - name: Exho
run: echo env.CISKIP run: echo env.CISKIP
- name: TAG - Bump version and push tag - name: TAG - Bump version and push tag