Skip to content

Commit

Permalink
Unpack GH Pages artifact to public
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Aug 13, 2024
1 parent a34f0fb commit 3bb097d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
needs: build-artifacts
runs-on: ubuntu-latest
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
group: "${{ github.workflow }}-${{ github.ref }}-${{ inputs.publish_gh_pages }}"
env:
DTC_HEADLESS: true
steps:
Expand Down Expand Up @@ -98,7 +98,12 @@ jobs:
uses: actions/download-artifact@v4
with:
name: github-pages
path: public
path: download

- name: Unpack GH Pages
run: |
mkdir -p public
tar -x -C public -v -f download/artifact.tar
- name: Cache Netlify CLI
uses: actions/cache@v4
Expand Down

0 comments on commit 3bb097d

Please sign in to comment.