Skip to content

Commit

Permalink
fix input param
Browse files Browse the repository at this point in the history
  • Loading branch information
sukoneck committed Dec 4, 2024
1 parent 9fe3d75 commit e732ae1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
type: boolean
default: true
features:
description: "Compilation Features"
description: "Binary Compilation Features"
required: false
type: string
draft-release:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
build-binary:
name: Build binary
needs: extract-version
if: ${{ inputs.build-binary == 'true' || github.event_name == 'push'}} # when manually triggered or version tagged
if: ${{ github.event.inputs.build-binary == 'true' || github.event_name == 'push'}} # when manually triggered or version tagged
runs-on: ${{ matrix.configs.runner }}
container:
image: ubuntu:22.04
Expand All @@ -77,7 +77,7 @@ jobs:
# Paused until docker is pre-installed https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
# - target: aarch64-apple-darwin
# runner: warp-macos-14-arm64-6x
features: ${{ inputs.features }}
features: ${{ github.event.inputs.features }}
# - ""
# - "redact-sensitive"

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:

draft-release:
name: Draft release
if: ${{ inputs.draft-release == 'true' || github.event_name == 'push'}} # when manually triggered or version tagged
if: ${{ github.event.inputs.draft-release == 'true' || github.event_name == 'push'}} # when manually triggered or version tagged
needs: [extract-version, build-binary]
runs-on: warp-ubuntu-latest-x64-16x
env:
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
echo "${{ steps.create-release-draft.outputs.url }}" >> $GITHUB_STEP_SUMMARY
build-docker:
if: ${{ inputs.build-docker == 'true' }}
if: ${{ github.event.inputs.build-docker == 'true' }}
name: Build and publish Docker image
needs: extract-version
runs-on: warp-ubuntu-latest-x64-16x
Expand Down

0 comments on commit e732ae1

Please sign in to comment.