Skip to content

Commit

Permalink
workflow tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Sep 27, 2020
1 parent 39ef7d1 commit d1e9f29
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Publish

on:
release:
Expand All @@ -20,25 +20,25 @@ jobs:
- name: Publish Synthesis GUI to Github
uses: svenstaro/upload-release-action@v2
with:
file: Synthesis.Bethesda.GUI/bin/Release/Synthesis.exe
file: Synthesis.Bethesda.GUI/bin/x64/Release/netcoreapp3.1/Synthesis.exe
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.release.tag_name }}
- name: Publish Mutagen Synthesis to Github
uses: svenstaro/upload-release-action@v2
with:
file: Mutagen.Bethesda.Synthesis/bin/Release/Mutagen.Bethesda.Synthesis.${{ github.event.release.tag_name }}.nupkg
file: Mutagen.Bethesda.Synthesis/bin/x64/Release/Mutagen.Bethesda.Synthesis.${{ github.event.release.tag_name }}.nupkg
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.release.tag_name }}
- name: Publish Synthesis Bethesda to Github
uses: svenstaro/upload-release-action@v2
with:
file: Synthesis.Bethesda/bin/Release/Synthesis.Bethesda.${{ github.event.release.tag_name }}.nupkg
file: Synthesis.Bethesda/bin/x64/Release/Synthesis.Bethesda.${{ github.event.release.tag_name }}.nupkg
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.release.tag_name }}
- name: Publish Synthesis Execution to Github
uses: svenstaro/upload-release-action@v2
with:
file: Synthesis.Bethesda.Execution/bin/Release/Synthesis.Bethesda.Execution.${{ github.event.release.tag_name }}.nupkg
file: Synthesis.Bethesda.Execution/bin/x64/Release/Synthesis.Bethesda.Execution.${{ github.event.release.tag_name }}.nupkg
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.release.tag_name }}
- name: Publish to Nuget.org
Expand Down

0 comments on commit d1e9f29

Please sign in to comment.