Skip to content

Commit 239a433

Browse files
committed
Workflows Deployment
1 parent a83f06a commit 239a433

2 files changed

Lines changed: 30 additions & 16 deletions

File tree

.githhub/workflows/deploy.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy Authenticator Site
2+
3+
on:
4+
push:
5+
branches: [master]
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
jobs:
13+
deploy:
14+
runs-on: ubuntu-latest
15+
environment: Authenticator
16+
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Setup Pages
22+
uses: actions/configure-pages@v4
23+
24+
- name: Upload site files
25+
uses: actions/upload-pages-artifact@v3
26+
with:
27+
path: .
28+
29+
- name: Deploy to GitHub Pages
30+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)