github: Simplify deploy condition

[skip deploy]

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2020-01-10 13:41:10 +05:30
parent 1dbe2db49a
commit 4abc0b1556
1 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ on:
jobs:
build-deploy:
runs-on: ubuntu-18.04
if: "!contains(github.event.head_commit.message, '[skip deploy]')"
steps:
- uses: actions/checkout@master
@ -21,7 +22,7 @@ jobs:
run: hugo --minify -DEFb=https://staging.msfjarvis.dev/
- name: Deploy to staging
if: "!contains(github.event.head_commit.message, '[skip staging]') && !contains(github.event.head_commit.message, '[skip deploy]')"
if: "!contains(github.event.head_commit.message, '[skip staging]')"
run: source $GITHUB_WORKSPACE/ci/deploy.sh
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
@ -34,7 +35,7 @@ jobs:
run: hugo --minify
- name: Deploy to prod
if: "!contains(github.event.head_commit.message, '[skip prod]') && !contains(github.event.head_commit.message, '[skip deploy]')"
if: "!contains(github.event.head_commit.message, '[skip prod]')"
run: source $GITHUB_WORKSPACE/ci/deploy.sh
env:
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}