Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-mcgann committed Feb 19, 2024
1 parent 7b2acc7 commit 70d22d9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Web

on:
push:
branches: [ "main" ]

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write

steps:
- uses: actions/checkout@v3

- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
path: '.'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 70d22d9

Please sign in to comment.