Skip to content

Commit

Permalink
Fix buildinfo
Browse files Browse the repository at this point in the history
(References: #109)
  • Loading branch information
Aszusz committed Feb 15, 2024
1 parent edcf5da commit 617dfed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/man-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ env:
app_name: ${{ inputs.env == 'Production' && 'SuperHumanInstaller' || 'SuperHumanInstallerDev' }}
app_id: net.prominic.genesis.${{ inputs.env == 'Production' && 'superhumaninstaller' || 'superhumaninstallerdev' }}
tag: v${{ inputs.version }}${{ inputs.env == 'Production' && ' ' || '-dev' }}
workflow: ${{ inputs.env == 'Production' && 'production' || 'development' }}

jobs:
build-linux:
Expand Down Expand Up @@ -100,7 +101,7 @@ jobs:
with:
json: |
{
"workflow": "development",
"workflow": "${{ env.workflow }}",
"version": "${{ inputs.version }}",
"branch": "${{ github.ref_name }}",
"commit_sha": "${{ github.sha }}",
Expand Down

1 comment on commit 617dfed

@piotrzarzycki21
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes related to preparation of 0.9.0 production release #112

Please sign in to comment.