Commit 29deff61 authored by Peter Parente's avatar Peter Parente

TODOs, ci skip check

parent 76af1fd8
...@@ -35,7 +35,7 @@ jobs: ...@@ -35,7 +35,7 @@ jobs:
- name: Build Docker Images - name: Build Docker Images
run: make -C main build-test-all run: make -C main build-test-all
- name: Run Post-Build Hooks - name: Run Post-Build Hooks
run: make -C main hooks-all run: make -C main hook-all
env: env:
COMMIT_MSG: "${{github.event.head_commit.message}}" COMMIT_MSG: "${{github.event.head_commit.message}}"
WIKI_PATH: ../wiki WIKI_PATH: ../wiki
...@@ -47,6 +47,7 @@ jobs: ...@@ -47,6 +47,7 @@ jobs:
- build - build
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
steps: steps:
# TODO: need to auth with docker hub
- name: Push Images - name: Push Images
run: make -C main push-all run: make -C main push-all
# TODO: doesn't support working directory # TODO: doesn't support working directory
......
...@@ -29,13 +29,14 @@ jobs: ...@@ -29,13 +29,14 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: needs:
- build - build
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, 'ci skip')
steps: steps:
- name: Extract Source Strings - name: Extract Source Strings
working-directory: docs working-directory: docs
run: | run: |
make gettext make gettext
sphinx-intl update -p _build/gettext -l en sphinx-intl update -p _build/gettext -l en
# TODO: need to ci skip to prevent looping
- name: Push Strings to Master - name: Push Strings to Master
uses: mikeal/publish-to-github-action@master uses: mikeal/publish-to-github-action@master
env: env:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment