Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add installation-test input in release-crates-debian workflow #57

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/release-crates-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
workflow_call:
inputs:
live-run:
type: string
required: false
type: boolean
required: true
repo:
type: string
required: true
Expand All @@ -15,15 +15,19 @@ on:
branch:
type: string
required: true
installation-test:
type: boolean
required: false
default: true
no-build:
type: boolean
required: false
default: false
workflow_dispatch:
inputs:
live-run:
type: string
required: false
type: boolean
required: true
repo:
type: string
required: true
Expand All @@ -33,6 +37,10 @@ on:
branch:
type: string
required: true
installation-test:
type: boolean
required: false
default: true
no-build:
type: boolean
required: false
Expand All @@ -57,6 +65,7 @@ jobs:
with:
live-run: ${{ inputs.live-run }}
version: ${{ inputs.version }}
installation-test: ${{ inputs.installation-test }}
ssh-host: [email protected]
ssh-host-path: /home/data/httpd/download.eclipse.org/zenoh/debian-repo
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
Expand Down