Skip to content

Commit aefee49

Browse files
committed
Fix release config
1 parent 48d3480 commit aefee49

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,21 @@ jobs:
3838
asset_path: ./release.zip
3939
asset_name: release-${{ github.ref_name }}.zip
4040
asset_content_type: application/zip
41+
42+
- uses: actions/upload-release-asset@v1
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
with:
46+
upload_url: ${{ steps.create_release.outputs.upload_url }}
47+
asset_path: ./main.js
48+
asset_name: main.js
49+
asset_content_type: text/javascript
50+
51+
- uses: actions/upload-release-asset@v1
52+
env:
53+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54+
with:
55+
upload_url: ${{ steps.create_release.outputs.upload_url }}
56+
asset_path: ./manifest.json
57+
asset_name: manifest.json
58+
asset_content_type: application/json

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ change log manually.
3737

3838
## Changelog
3939

40-
### v1.0.1
41-
42-
- Fix plugin id
43-
4440
### v1.0.0
4541

4642
- Moved to new maintainer

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"fundingUrl": "https://buymeacoffee.com/philoserf",
88
"isDesktopOnly": false,
99
"minAppVersion": "1.0.0",
10-
"version": "1.0.2"
10+
"version": "1.0.0"
1111
}

versions.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
2-
"1.0.2": "1.0.0",
3-
"1.0.1": "1.0.0",
42
"1.0.0": "1.0.0",
53
"0.1.0": "0.9.7"
64
}

0 commit comments

Comments
 (0)