From bd2db31083e2b5d9fa5fab4f6d490e1b9bd8d7e3 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Mon, 5 Oct 2020 09:09:20 +0200 Subject: [PATCH] fix: ci --- .github/workflows/deploy.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d974cdf..2e32b71 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,19 +1,19 @@ on: - push: - branches: - - master + push: + branches: + - master name: Deploy to Github Pages jobs: - deploy: - name: deploy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Deploy - uses: JamesIves/github-pages-deploy-action@master - env: - ACCESS_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }} - BRANCH: gh-pages - FOLDER: out - BUILD_SCRIPT: npm ci && npm run build - CNAME: slashdev.space + deploy: + name: deploy + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Deploy + uses: JamesIves/github-pages-deploy-action@master + env: + ACCESS_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }} + BRANCH: gh-pages + FOLDER: out + BUILD_SCRIPT: npm ci && npm run build + CNAME: slashdev.space