Skip to content

Commit dedda80

Browse files
committed
Fix deploy
1 parent f1ad682 commit dedda80

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5-
branches: ['1.0']
5+
branches: ["1.0"]
66
workflow_dispatch:
77

88
permissions:
@@ -11,20 +11,23 @@ permissions:
1111
id-token: write
1212

1313
concurrency:
14-
group: 'pages'
14+
group: "pages"
1515
cancel-in-progress: true
1616

1717
jobs:
1818
build:
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: amicons
2023
steps:
2124
- name: Checkout
2225
uses: actions/checkout@v4
2326
- name: Set up Node
2427
uses: actions/setup-node@v4
2528
with:
2629
node-version: 20
27-
cache: 'npm'
30+
cache: "npm"
2831
- name: Install dependencies
2932
run: npm install
3033
- name: Production build
@@ -53,7 +56,7 @@ jobs:
5356
uses: actions/setup-node@v4
5457
with:
5558
node-version: 20
56-
cache: 'npm'
59+
cache: "npm"
5760
- name: Download artifact
5861
id: download
5962
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)