Skip to content

Commit

Permalink
changes on publish site workflow 9
Browse files Browse the repository at this point in the history
  • Loading branch information
lumi2021 committed Aug 9, 2024
1 parent 17214bf commit a7d7c3a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/publish-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
NODE_OPTIONS: --max-old-space-size=6144

jobs:
setup:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down Expand Up @@ -46,3 +46,14 @@ jobs:
uses: actions/upload-pages-artifact@v2
with:
path: website/build

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@v1

0 comments on commit a7d7c3a

Please sign in to comment.