From d5b0d27d1d0861ce97fe3bd3432fa1bf9771d988 Mon Sep 17 00:00:00 2001 From: David Grove Date: Thu, 3 Oct 2024 15:39:59 -0400 Subject: [PATCH] fix gh-static-pages action --- .github/workflows/gh-pages-static.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/gh-pages-static.yml b/.github/workflows/gh-pages-static.yml index c8c0eeb..18381fb 100644 --- a/.github/workflows/gh-pages-static.yml +++ b/.github/workflows/gh-pages-static.yml @@ -1,12 +1,7 @@ -# Simple workflow for deploying static content to GitHub Pages +# Workflow to invoke from another workflow to deploy static content to GitHub Pages name: Deploy static content to Pages on: - # Runs on pushes targeting the default branch - push: - branches: ["gh-pages"] - - # Enable it to be invoked from other workflows workflow_call: # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages @@ -22,7 +17,6 @@ concurrency: cancel-in-progress: false jobs: - # Single deploy job since we're just deploying deploy: environment: name: github-pages @@ -31,6 +25,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + ref: gh-pages - name: Setup Pages uses: actions/configure-pages@v5 - name: Upload artifact