mirror of https://github.com/snachodog/mybuddy.git
Standardize job naming patterns
This commit is contained in:
parent
a072868a16
commit
99dd61bd17
|
@ -42,7 +42,7 @@ jobs:
|
||||||
github-token: ${{ secrets.github_token }}
|
github-token: ${{ secrets.github_token }}
|
||||||
flag-name: test-python-${{ matrix.python-version }}
|
flag-name: test-python-${{ matrix.python-version }}
|
||||||
parallel: true
|
parallel: true
|
||||||
coveralls_finish:
|
coveralls-finish:
|
||||||
needs: test
|
needs: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -53,15 +53,13 @@ jobs:
|
||||||
parallel-finished: true
|
parallel-finished: true
|
||||||
deploy-docs:
|
deploy-docs:
|
||||||
needs: test
|
needs: test
|
||||||
name: Deploy docs
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
environment:
|
environment:
|
||||||
name: documentation
|
name: documentation
|
||||||
url: https://docs.baby-buddy.net
|
url: https://docs.baby-buddy.net
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout main
|
- uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v3
|
|
||||||
- name: Deploy docs
|
- name: Deploy docs
|
||||||
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue