Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
taooceros authored Dec 30, 2021
1 parent a6644a3 commit 4bbaa42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
- run: echo ${{steps.version.outputs.prop}}
- name: Publish
run: |
dotnet publish 'Flow.Plugin.VSCodeWorkspace.csproj' -r win-x64 -c Release -o "Flow.Plugin.VSCodeWorkspace-${{steps.version.outputs.prop}}"
7z a -tzip "Flow.Plugin.VSCodeWorkspace-${{steps.version.outputs.prop}}.zip" "./Flow.Plugin.VSCodeWorkspace-${{steps.version.outputs.prop}}/*"
rm -r "Flow.Plugin.VSCodeWorkspace-${{steps.version.outputs.prop}}"
dotnet publish 'Flow.Plugin.VSCodeWorkspaces.csproj' -r win-x64 -c Release -o "Flow.Plugin.VSCodeWorkspaces-${{steps.version.outputs.prop}}"
7z a -tzip "Flow.Plugin.VSCodeWorkspaces-${{steps.version.outputs.prop}}.zip" "./Flow.Plugin.VSCodeWorkspaces-${{steps.version.outputs.prop}}/*"
rm -r "Flow.Plugin.VSCodeWorkspaces-${{steps.version.outputs.prop}}"
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: "Flow.Plugin.VSCodeWorkspace*"
files: "Flow.Plugin.VSCodeWorkspaces*"
tag_name: "v${{steps.version.outputs.prop}}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 4bbaa42

Please sign in to comment.