mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 05:31:44 +00:00
gha(release): Hopefully fixes it
This commit is contained in:
parent
a80fa5e33f
commit
2dc422bc14
2 changed files with 21 additions and 16 deletions
7
.github/workflows/flatpak.yml
vendored
7
.github/workflows/flatpak.yml
vendored
|
@ -3,7 +3,10 @@ name: Flatpak release job
|
|||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
ryujinx_version:
|
||||
ryujinx_base_version:
|
||||
required: true
|
||||
type: string
|
||||
ryujinx_version_minor:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
|
@ -20,7 +23,7 @@ jobs:
|
|||
GIT_COMMITTER_EMAIL: "61127645+RyujinxBot@users.noreply.github.com"
|
||||
RYUJINX_PROJECT_FILE: "Ryujinx/Ryujinx.csproj"
|
||||
NUGET_SOURCES_DESTDIR: "nuget-sources"
|
||||
RYUJINX_VERSION: ${{ inputs.ryujinx_version }}
|
||||
RYUJINX_VERSION: "${{ inputs.ryujinx_base_version }}. ${{ inputs.ryujinx_version_minor }}"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -114,6 +114,8 @@ jobs:
|
|||
|
||||
flatpak_release:
|
||||
uses: ./.github/workflows/flatpak.yml
|
||||
needs: release
|
||||
with:
|
||||
ryujinx_version: "${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}"
|
||||
ryujinx_base_version: "1.1"
|
||||
ryujinx_version_minor: github.run_number
|
||||
secrets: inherit
|
||||
|
|
Loading…
Reference in a new issue