Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnious authored Jul 23, 2024
1 parent b411cf8 commit 9a404ab
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
dotnet publish -c Release -r win-x64
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
id: upload-artifact
with:
# Artifact name
name: "StarfieldSaveTool-${{ steps.extract-version.outputs.semver }}"
Expand All @@ -74,8 +75,8 @@ jobs:
uses: softprops/action-gh-release@v1
if: ${{ inputs.release == true }}
with:
files: ${{ github.workspace }}/bin/Release/net8.0/win-x64/publish/**/*
files: ${{ steps.upload-artifact.outputs.artifact-url }}
prerelease: true
draft: true
name: ${{ steps.extract-version.outputs.semver }}
tag_name: ${{ steps.extract-version.outputs.tag }}
name: "${{ steps.extract-version.outputs.semver }}-test"
tag_name: "${{ steps.extract-version.outputs.tag }}-test"

0 comments on commit 9a404ab

Please sign in to comment.