Skip to content

Commit a4bdbfb

Browse files
committed
refactor: rename extension zip file for Chrome and Edge deployment
1 parent 58e0c36 commit a4bdbfb

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/deploy-extension.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
uses: cardinalby/webext-buildtools-pack-extension-dir-action@v1
2525
with:
2626
extensionDir: '.'
27-
zipFilePath: 'build/extension.zip'
27+
zipFilePath: 'build/extension-chromemium.zip'
2828

2929
- name: Upload Packed Extension
3030
uses: actions/upload-artifact@v4
3131
with:
32-
name: extension
33-
path: build/extension.zip
32+
name: extension-chromemium
33+
path: build/extension-chromemium.zip
3434

3535
# Step 2: Fetch Google Access Token
3636
fetchToken:
@@ -69,7 +69,7 @@ jobs:
6969
- name: Download extension artifact
7070
uses: actions/download-artifact@v4
7171
with:
72-
name: extension
72+
name: extension-chromemium
7373

7474
- name: Read access token
7575
id: read-token
@@ -78,7 +78,7 @@ jobs:
7878
- name: Upload to Chrome Web Store
7979
uses: cardinalby/webext-buildtools-chrome-webstore-action@v1
8080
with:
81-
zipFilePath: 'extension.zip'
81+
zipFilePath: 'extension-chromemium.zip'
8282
extensionId: 'ibnifmdhbaknbkgldmbnebeidephchno'
8383
apiAccessToken: ${{ env.ACCESS_TOKEN }}
8484

@@ -110,12 +110,12 @@ jobs:
110110
- name: Download extension artifact
111111
uses: actions/download-artifact@v4
112112
with:
113-
name: extension
113+
name: extension-chromemium
114114

115115
- name: Publish to Microsoft Edge Add-ons
116116
uses: wdzeng/edge-addon@v2
117117
with:
118-
zip-path: 'extension.zip'
118+
zip-path: 'extension-chromemium.zip'
119119
product-id: '676e8faf-4af5-4c0a-aa3c-6f3524472fba'
120120
api-key: ${{ secrets.EDGE_API_KEY }}
121121
client-id: ${{ secrets.EDGE_CLIENT_ID }}

0 commit comments

Comments
 (0)