diff --git a/.github/workflows/commit_stage.yml b/.github/workflows/commit_stage.yml index 93ed4bab..695a4f52 100644 --- a/.github/workflows/commit_stage.yml +++ b/.github/workflows/commit_stage.yml @@ -12,7 +12,7 @@ on : jobs: commit-stage: - uses: L-Acoustics/la-mw-gh-action/.github/workflows/commit_stage.yml@main + uses: L-Acoustics/la-mw-gh-action/.github/workflows/commit_stage.yml@dev secrets: GH_TOKEN: ${{secrets.GITHUB_TOKEN}} KEYCHAIN_PASSWORD: ${{secrets.KEYCHAIN_PASSWORD}} diff --git a/.github/workflows/release_stage.yml b/.github/workflows/release_stage.yml index bc17c4a2..0f364735 100644 --- a/.github/workflows/release_stage.yml +++ b/.github/workflows/release_stage.yml @@ -8,26 +8,16 @@ on: workflow_dispatch: inputs: - release_linux: - description: 'Release the linux package' - type: boolean - default: true - release_windows: - description: 'Release the windows package' - type: boolean - default: true - release_macos: - description: 'Release the macos package' + release: + description: 'Create the Github Release.' type: boolean default: true jobs: release-stage: - uses: L-Acoustics/la-mw-gh-action/.github/workflows/release_stage.yml@main + uses: L-Acoustics/la-mw-gh-action/.github/workflows/commit_stage.yml@dev with: - release_linux: ${{inputs.release_linux}} - release_windows: ${{inputs.release_windows}} - release_macos: ${{inputs.release_macos}} + release: ${{inputs.release}} secrets: GH_TOKEN: ${{secrets.GITHUB_TOKEN}} KEYCHAIN_PASSWORD: ${{secrets.KEYCHAIN_PASSWORD}}