Skip to content

Commit

Permalink
add back deploy step
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Jenkins committed Mar 23, 2024
1 parent effe9d4 commit b2b3a88
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,21 @@ jobs:
path: |
build/**/*
# deploy:
# needs: [build, test]
# permissions:
# pages: write # to deploy to Pages
# id-token: write # to verify the deployment originates from an appropriate source
deploy:
needs: [build, test]
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# # Deploy to the github-pages environment
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# # Specify runner + deployment step
# runs-on: ubuntu-latest
# Specify runner + deployment step
runs-on: ubuntu-latest

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

0 comments on commit b2b3a88

Please sign in to comment.