From a44bc95e6fddf5175b665a3a4bcd672d85de9c67 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Sun, 26 Apr 2020 22:49:05 -0400 Subject: [PATCH] Change action order --- .github/workflows/main.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ddd78cc05..6ff04d686 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -7,7 +7,19 @@ on: 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: + needs: docs runs-on: ubuntu-latest steps: - name: Checkout master @@ -23,15 +35,3 @@ jobs: uses: helm/chart-releaser-action@v1.0.0-rc.2 env: 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 }}