mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
add PluginIndicator plugin publish step
This commit is contained in:
parent
d1e79150dd
commit
a1e6d610e8
1 changed files with 28 additions and 0 deletions
28
.github/workflows/default_plugins.yml
vendored
28
.github/workflows/default_plugins.yml
vendored
|
|
@ -28,6 +28,8 @@ jobs:
|
||||||
- 'Plugins/Flow.Launcher.Plugin.Calculator/plugin.json'
|
- 'Plugins/Flow.Launcher.Plugin.Calculator/plugin.json'
|
||||||
explorer:
|
explorer:
|
||||||
- 'Plugins/Flow.Launcher.Plugin.Explorer/plugin.json'
|
- 'Plugins/Flow.Launcher.Plugin.Explorer/plugin.json'
|
||||||
|
pluginindicator:
|
||||||
|
- 'Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json'
|
||||||
|
|
||||||
- name: Get BrowserBookmark Version
|
- name: Get BrowserBookmark Version
|
||||||
if: steps.changes.outputs.browserbookmark == 'true'
|
if: steps.changes.outputs.browserbookmark == 'true'
|
||||||
|
|
@ -105,3 +107,29 @@ jobs:
|
||||||
tag_name: "v${{steps.updated-version-explorer.outputs.prop}}"
|
tag_name: "v${{steps.updated-version-explorer.outputs.prop}}"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PUBLISH_PLUGINS }}
|
GITHUB_TOKEN: ${{ secrets.PUBLISH_PLUGINS }}
|
||||||
|
|
||||||
|
|
||||||
|
- name: Get PluginIndicator Version
|
||||||
|
if: steps.changes.outputs.pluginindicator == 'true'
|
||||||
|
id: updated-version-pluginindicator
|
||||||
|
uses: notiz-dev/github-action-json-property@release
|
||||||
|
with:
|
||||||
|
path: 'Plugins/Flow.Launcher.Plugin.PluginIndicator/plugin.json'
|
||||||
|
prop_path: 'Version'
|
||||||
|
|
||||||
|
- name: Build PluginIndicator
|
||||||
|
if: steps.changes.outputs.pluginindicator == 'true'
|
||||||
|
run: |
|
||||||
|
dotnet publish 'Plugins/Flow.Launcher.Plugin.PluginIndicator/Flow.Launcher.Plugin.PluginIndicator.csproj' --framework net7.0-windows -c Release -o "Flow.Launcher.Plugin.PluginIndicator"
|
||||||
|
7z a -tzip "Flow.Launcher.Plugin.PluginIndicator.zip" "./Flow.Launcher.Plugin.PluginIndicator/*"
|
||||||
|
rm -r "Flow.Launcher.Plugin.PluginIndicator"
|
||||||
|
|
||||||
|
- name: Publish PluginIndicator
|
||||||
|
if: steps.changes.outputs.pluginindicator == 'true'
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
repository: "Flow-Launcher/Flow.Launcher.Plugin.PluginIndicator"
|
||||||
|
files: "Flow.Launcher.Plugin.PluginIndicator.zip"
|
||||||
|
tag_name: "v${{steps.updated-version-pluginindicator.outputs.prop}}"
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.PUBLISH_PLUGINS }}
|
||||||
Loading…
Reference in a new issue