Change action order
This commit is contained in:
parent
1fb6f37091
commit
bae9043171
1 changed files with 12 additions and 12 deletions
24
.github/workflows/main.yaml
vendored
24
.github/workflows/main.yaml
vendored
|
@ -7,7 +7,19 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
docs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout master
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Deploy docs
|
||||||
|
uses: ./.github/actions/mkdocs
|
||||||
|
env:
|
||||||
|
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
|
||||||
|
|
||||||
chart:
|
chart:
|
||||||
|
needs: docs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout master
|
- name: Checkout master
|
||||||
|
@ -23,15 +35,3 @@ jobs:
|
||||||
uses: helm/chart-releaser-action@v1.0.0-rc.2
|
uses: helm/chart-releaser-action@v1.0.0-rc.2
|
||||||
env:
|
env:
|
||||||
CR_TOKEN: "${{ secrets.PERSONAL_TOKEN }}"
|
CR_TOKEN: "${{ secrets.PERSONAL_TOKEN }}"
|
||||||
|
|
||||||
docs:
|
|
||||||
needs: chart
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout master
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Deploy docs
|
|
||||||
uses: ./.github/actions/mkdocs
|
|
||||||
env:
|
|
||||||
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
|
|
||||||
|
|
Loading…
Reference in a new issue