TODOs, ci skip check

This commit is contained in:
Peter Parente
2020-07-28 22:51:47 -04:00
parent 76af1fd8f6
commit 29deff6162
2 changed files with 4 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ jobs:
- name: Build Docker Images
run: make -C main build-test-all
- name: Run Post-Build Hooks
run: make -C main hooks-all
run: make -C main hook-all
env:
COMMIT_MSG: "${{github.event.head_commit.message}}"
WIKI_PATH: ../wiki
@@ -47,6 +47,7 @@ jobs:
- build
if: github.ref == 'refs/heads/master'
steps:
# TODO: need to auth with docker hub
- name: Push Images
run: make -C main push-all
# TODO: doesn't support working directory

View File

@@ -29,13 +29,14 @@ jobs:
runs-on: ubuntu-latest
needs:
- build
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, 'ci skip')
steps:
- name: Extract Source Strings
working-directory: docs
run: |
make gettext
sphinx-intl update -p _build/gettext -l en
# TODO: need to ci skip to prevent looping
- name: Push Strings to Master
uses: mikeal/publish-to-github-action@master
env: