-
-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Publish Plugins | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: ['deploy_plugins'] #<-------- | ||
paths: ['Plugins/Flow.Launcher.Plugin.BrowserBookmark/**'] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# - name: Fetch latest release version | ||
# id: fetch-latest-release | ||
# uses: reloc8/[email protected] | ||
|
||
- name: Get updated version | ||
id: updated-version | ||
uses: notiz-dev/github-action-json-property@release | ||
with: | ||
path: 'plugin.json' | ||
prop_path: 'Version' | ||
|
||
# - name: Determine if publish release required | ||
# id: publish-release | ||
# run: | | ||
# $updated_ver="${{steps.updated-version.outputs.prop}}" | ||
# $release_ver="${{ steps.fetch-latest-release.outputs.latest-release }}".replace('v','') | ||
# if ($updated_ver -ne $release_ver -and "${{github.ref_name}}" -eq 'master') { | ||
# echo "::set-output name=required::true" | ||
# } | ||
# echo "Updated version is $updated_ver" | ||
# echo "Release version is $release_ver" | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 7.0.x | ||
|
||
- name: Build | ||
run: | | ||
dotnet publish 'Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj' --framework net7.0-windows -c Release -o "Flow.Launcher.Plugin.BrowserBookmark" | ||
7z a -tzip "Flow.Launcher.Plugin.BrowserBookmark.zip" "./Flow.Launcher.Plugin.BrowserBookmark/*" | ||
rm -r "Flow.Launcher.Plugin.BrowserBookmark" | ||
# - name: Upload artifact | ||
# uses: actions/upload-artifact@v2 | ||
# with: | ||
# name: Wox.Plugin.GoogleSearch.zip | ||
# path: . | ||
|
||
- name: Publish | ||
uses: softprops/action-gh-release@v1 | ||
# if: steps.publish-release.outputs.required == 'true' | ||
with: | ||
repository: "Flow-Launcher/Flow.Launcher.Plugin.BrowserBookmark" | ||
files: "Flow.Launcher.Plugin.BrowserBookmark.zip" | ||
tag_name: "v${{steps.updated-version.outputs.prop}}" | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |