Skip to content

Commit

Permalink
Merge pull request #1 from xyhp915/main
Browse files Browse the repository at this point in the history
Fix: release action flow
  • Loading branch information
sidharth-panwar authored Oct 14, 2021
2 parents ee4fd30 + dd0632e commit 538f09f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
yarn build
mkdir ${{ env.PLUGIN_NAME }}
cp README.md package.json extract.svg Extract_v2.gif ${{ env.PLUGIN_NAME }}
mv dist ${{ env.PLUGIN_NAME }}
mv dist/* ${{ env.PLUGIN_NAME }} && rm -rf dist
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}
ls
echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)"
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "logseq-extract-plugin",
"version": "1.0.0",
"version": "1.0.5",
"description": "Extract highlighted/bold content from block. Optionally, you can set the regex in settings to get what you want.",
"main": "index.html",
"author": "Sidharth Panwar",
Expand All @@ -19,5 +19,8 @@
"logseq": {
"id": "logseq-extract",
"icon": "./extract.svg"
}
}
},
"browserslist": [
"chrome 80"
]
}

0 comments on commit 538f09f

Please sign in to comment.