Skip to content

Commit fc7dc90

Browse files
committed
fix: Release workflow
1 parent 4796834 commit fc7dc90

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- '*' # Push events to matching any tag format, i.e. 1.0, 20.15.10
77

88
env:
9-
PLUGIN_NAME: obsidian-fold-properties # Change this to the name of your plugin-id folder
9+
PLUGIN_NAME: sync-folds # Change this to the name of your plugin-id folder
1010

1111
jobs:
1212
build:
@@ -32,7 +32,7 @@ jobs:
3232
id: create_release
3333
uses: actions/create-release@v1
3434
env:
35-
GITHUB_TOKEN: ${{ secrets.FOLD_PROPERTIES_SECRET }}
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
with:
3737
tag_name: ${{ github.ref }}
3838
release_name: ${{ github.ref }}
@@ -42,7 +42,7 @@ jobs:
4242
id: upload-main
4343
uses: actions/upload-release-asset@v1
4444
env:
45-
GITHUB_TOKEN: ${{ secrets.FOLD_PROPERTIES_SECRET }}
45+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
with:
4747
upload_url: ${{ steps.create_release.outputs.upload_url }}
4848
asset_path: ./main.js
@@ -52,7 +52,7 @@ jobs:
5252
id: upload-manifest
5353
uses: actions/upload-release-asset@v1
5454
env:
55-
GITHUB_TOKEN: ${{ secrets.FOLD_PROPERTIES_SECRET }}
55+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656
with:
5757
upload_url: ${{ steps.create_release.outputs.upload_url }}
5858
asset_path: ./manifest.json
@@ -62,7 +62,7 @@ jobs:
6262
# id: upload-css
6363
# uses: actions/upload-release-asset@v1
6464
# env:
65-
# GITHUB_TOKEN: ${{ secrets.FOLD_PROPERTIES_SECRET }}
65+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6666
# with:
6767
# upload_url: ${{ steps.create_release.outputs.upload_url }}
6868
# asset_path: ./styles.css

0 commit comments

Comments
 (0)