Skip to content

Commit 991958a

Browse files
committed
Fix release build bug
1 parent f173a3a commit 991958a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
yarn
2525
yarn run build --if-present
2626
mkdir ${{ env.PLUGIN_NAME }}
27-
cp main.js manifest.json style.css ${{ env.PLUGIN_NAME }}
27+
cp main.js manifest.json styles.css ${{ env.PLUGIN_NAME }}
2828
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}
2929
ls
3030
echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)"
@@ -69,13 +69,13 @@ jobs:
6969
asset_path: ./manifest.json
7070
asset_name: manifest.json
7171
asset_content_type: application/json
72-
- name: Upload style.css
72+
- name: Upload styles.css
7373
id: upload-style
7474
uses: actions/upload-release-asset@v1
7575
env:
7676
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7777
with:
7878
upload_url: ${{ steps.create_release.outputs.upload_url }}
79-
asset_path: ./style.css
80-
asset_name: style.css
79+
asset_path: ./styles.css
80+
asset_name: styles.css
8181
asset_content_type: text/css

0 commit comments

Comments
 (0)