From d7562887993a3a5b9351c9520d35eac9ffe402d2 Mon Sep 17 00:00:00 2001 From: Skillz Date: Thu, 18 Jun 2020 10:07:11 -0400 Subject: [PATCH] test fix --- .github/workflows/docs.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 524d6ae11..983e67ea3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -10,15 +10,17 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on + build-and-deploy: runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@master - - name: Build Documentation - run: ./deploy.sh + - name: vuepress-deploy + uses: jenkey2011/vuepress-deploy@master + env: + ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} + TARGET_REPO: Skillz4Killz/Discordeno + TARGET_BRANCH: master + BUILD_SCRIPT: npm i && npm run docs:build + BUILD_DIR: docs/.vuepress/dist/