We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c93e54 commit be0d23eCopy full SHA for be0d23e
1 file changed
.github/workflows/deploy.yml
@@ -16,6 +16,7 @@ concurrency:
16
17
jobs:
18
build:
19
+ name: Build Amicons
20
runs-on: ubuntu-latest
21
defaults:
22
run:
@@ -44,6 +45,7 @@ jobs:
44
45
path: amicons/dist
46
47
check:
48
+ name: Check Docs linting and formatting
49
50
51
@@ -69,6 +71,7 @@ jobs:
69
71
run: pnpm lint
70
72
73
deploy:
74
+ name: Deploy docs to GitHub Pages
75
needs: [build, check]
76
environment:
77
name: github-pages
@@ -92,8 +95,10 @@ jobs:
92
95
cache-dependency-path: docs/pnpm-lock.yaml
93
96
- name: Download artifact
94
97
uses: actions/download-artifact@v8
98
+ id: download
99
with:
100
name: amicons
101
+ path: amicons
102
- name: Install dependencies
103
run: pnpm install --frozen-lockfile
104
- name: Build
0 commit comments