Skip to content

Commit 6e93d88

Browse files
authored
Create publish.yml
1 parent 7f2ed2b commit 6e93d88

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy dids subdirectory
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-22.04
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Deploy
15+
uses: peaceiris/actions-gh-pages@v3
16+
if: github.ref == 'refs/heads/main'
17+
with:
18+
github_token: ${{ secrets.GITHUB_TOKEN }}
19+
publish_dir: ./dids

0 commit comments

Comments
 (0)