diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 67468f4..7fd500a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,15 +1,10 @@ +name: Bundle Website +on: push -on: - push: - branches: - - master - -name: Build and publish site jobs: - build-bundle-deploy: + build: runs-on: ubuntu-latest steps: - - name: Checkout uses: actions/checkout@v2 @@ -23,7 +18,7 @@ jobs: - name: Compile assets run: make - + - name: Build uses: TonySpegel/zola-build-action@v1 env: @@ -32,6 +27,11 @@ jobs: - name: Disable Jekyll run: sudo touch ./public/.nojekyll + deploy: + runs-on: ubuntu-latest + needs: build + if: github.ref == 'refs/heads/master' + steps: - name: Deploy to GitHub Pages if: success() uses: crazy-max/ghaction-github-pages@v2 @@ -40,4 +40,4 @@ jobs: build_dir: public fqdn: ewpratten.com env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}