Skip to content

Commit

Permalink
update destination dir
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell authored May 15, 2023
1 parent bfbe746 commit 60a12e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
run: mkdir ${{ env.build-output }}

- name: Publish
run: dotnet publish --self-contained -c Release -r ${{ matrix.arch }} -p:Version=${{ inputs.version || github.ref_name }} DragonFruit.Kaplan/DragonFruit.Kaplan.csproj
run: dotnet publish --self-contained -c Release -o ${{ env.build-output }} -r ${{ matrix.arch }} -p:Version=${{ inputs.version || github.ref_name }} DragonFruit.Kaplan/DragonFruit.Kaplan.csproj

- name: Rename target file
run: Move-Item -Path DragonFruit.Kaplan\bin\Release\net6.0\${{ matrix.arch }}\publish\DragonFruit.Kaplan.exe -Destination kaplan-${{ matrix.arch }}.exe
run: Move-Item -Path ${{ env.build-output }}\DragonFruit.Kaplan.exe -Destination kaplan-${{ matrix.arch }}.exe

- name: Upload
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 60a12e1

Please sign in to comment.