Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrus-and committed Jul 21, 2024
1 parent 7f23571 commit 6c40396
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
contents: read
pages: write
jobs:
Deploy:
Build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
Expand All @@ -32,5 +32,14 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: new/_site # TEMP

Deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 6c40396

Please sign in to comment.