From bbb374cb157b062ac43c2591095135bc47e7d5f2 Mon Sep 17 00:00:00 2001 From: Jan Raasch <425211+janraasch@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:44:15 +0100 Subject: [PATCH] chore(ci): fix deploy condition - hopefully --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3baa9c..b441fd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,14 +35,10 @@ jobs: needs: build name: Deploy to GitHub Pages runs-on: ubuntu-latest - if: ${{ github.ref == 'refs/heads/source' }} + if: github.ref == 'refs/heads/source' steps: - uses: actions/checkout@v3 - uses: actions/download-artifact@v3 with: name: build path: ./public - - uses: peaceiris/actions-gh-pages@v3.9.2 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public