Skip to content

Commit

Permalink
static: fix step name in url output
Browse files Browse the repository at this point in the history
Revert "static: remove actions/configure-pages@v3"

This reverts commit d3e6be9.
  • Loading branch information
trinitronx committed Oct 17, 2023
1 parent 6811ba2 commit 29d3840
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
url: ${{ steps.setup_pages.outputs.base_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -40,6 +40,10 @@ jobs:
npm install
node index.js
- name: Setup Pages
id: setup_pages
uses: actions/configure-pages@v3

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit 29d3840

Please sign in to comment.