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: Some typos in workflow inputs #58

Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions .github/workflows/branch-bump-tag-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ on:
bump-deps-version:
type: string
required: false
bump-deps-branch:
type: string
required: false
outputs:
branch:
value: ${{ jobs.main.outputs.branch }}
Expand Down Expand Up @@ -61,7 +64,6 @@ jobs:
uses: eclipse-zenoh/ci/create-release-branch@main
with:
repo: ${{ inputs.repo }}
path: ${{ inputs.path }}
live-run: ${{ inputs.live-run }}
version: ${{ inputs.version }}
github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }}
Expand All @@ -70,7 +72,6 @@ jobs:
with:
repo: ${{ inputs.repo }}
path: ${{ inputs.path }}
live-run: ${{ inputs.live-run }}
version: ${{ inputs.version }}
bump-deps-pattern: ${{ inputs.bump-deps-pattern }}
bump-deps-version: ${{ inputs.bump-deps-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-crates-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
repo: ${{ inputs.repo }}
live-run: ${{ inputs.live-run }}
branch: ${{ inputs.branch }}
unpublished-deps-pattern: ${{ inputs.unpublished-deps-pattern }}
unpublished-deps-patterns: ${{ inputs.unpublished-deps-patterns }}
unpublished-deps-repos: ${{ inputs.unpublished-deps-repos }}
github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }}
crates-io-token: ${{ secrets.CRATES_IO_TOKEN }}
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