Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
flokuep committed Apr 26, 2024
1 parent 53a0d52 commit 970d78a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
branches: [ "develop" ]

env:
VERSION_NAME: Nightly

jobs:
prepare-build:
name: Prepare build
Expand Down Expand Up @@ -36,14 +33,14 @@ jobs:
uses: ./.github/workflows/dotnet-desktop.yml
with:
version: ${{ needs.prepare-build.outputs.version }}
version-name: $VERSION_NAME
version-name: Nightly

publish:
name: Publish release
needs: [prepare-build, build-windows]
uses: ./.github/workflows/publish-release.yml
with:
release-name: Latest nightly build
version-name: $VERSION_NAME
version-name: Nightly
artifact-x86: ${{ needs.build-windows.outputs.x86 }}
artifact-x64: ${{ needs.build-windows.outputs.x64 }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
tag_name: ${{ inputs.version-name }}
target_commitish: ${{ github.sha }}
prerelease: ${{ env.IS_NIGHTLY }}
latest: ${{ !env.IS_NIGHTLY }}
latest: ${{ env.IS_NIGHTLY == false}}
generate_release_notes: true

attach-artifacts:
Expand Down

0 comments on commit 970d78a

Please sign in to comment.