We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28ee03 commit 498ccf8Copy full SHA for 498ccf8
.github/workflows/vanity.yaml
@@ -0,0 +1,39 @@
1
+name: Vanity Generator
2
+
3
+on:
4
+ push:
5
+ branches: [ "master", "*" ]
6
7
+permissions:
8
+ contents: read
9
+ pages: write
10
+ id-token: write
11
12
+concurrency:
13
+ group: "pages"
14
+ cancel-in-progress: false
15
16
+jobs:
17
+ deploy:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v3
21
22
+ - name: Generate Vanity Files
23
+ uses: nikandfor/vanity-go@master
24
+ with:
25
+ vanity_file: vanity.yaml
26
+ output_dir: _site
27
+ generator_version: master
28
29
+ - name: Setup Pages
30
+ uses: actions/configure-pages@v5
31
32
+ - name: Upload artifact
33
+ uses: actions/upload-pages-artifact@v3
34
35
+ path: _site
36
37
+ - name: Deploy to GitHub Pages
38
+ id: deployment
39
+ uses: actions/deploy-pages@v4
0 commit comments