Skip to content

Commit

Permalink
Create manual-redeploy.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
gingershaped authored Nov 6, 2024
1 parent 74919be commit dc10942
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/manual-redeploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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

0 comments on commit dc10942

Please sign in to comment.