Skip to content

Commit

Permalink
add input for version on test release build
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptITAustria committed Nov 6, 2024
1 parent 661bcc2 commit cf38781
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/signed-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Create Signed Test Release

on:
workflow_dispatch:
inputs:
version:
description: 'Version for test deploy'
required: true
type: string

jobs:
dryrun:
Expand Down Expand Up @@ -31,8 +36,8 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env: # Pass the version as an environment variable to each matrix job
VERSION: ${{ needs.dryrun.outputs.version }}
env: # Pass test version from inputs
VERSION: ${{ inputs.version }}

steps:
- name: Checkout code
Expand Down

0 comments on commit cf38781

Please sign in to comment.