Manually redeploy Pages in case of fuckup #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manually redeploy Pages in case of fuckup | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
id-token: write | |
pages: write | |
concurrency: | |
group: "release" | |
cancel-in-progress: true | |
jobs: | |
# This goes in the website | |
release: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
- name: Upload built HTML | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: '.' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |