Skip to content

Commit

Permalink
Update deploy-github-pages.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MrApplejuice authored Sep 14, 2023
1 parent d1451f3 commit 717f3b2
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,23 @@ jobs:
run: pipenv install
- name: Build install
run: pipenv run make install
- name: Package install
run: "cd install && tar cfvz ../../github-pages.tar.gz ./*"
- name: Upload Pages artifact
with:
path: install
uses: actions/upload-pages-artifact@v2
deploy:
needs: build
runs-on: ubuntu-latest

permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 717f3b2

Please sign in to comment.