Skip to content
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
7 changes: 5 additions & 2 deletions .github/workflows/publish-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,21 @@ on:
description: 'The version of the crate to publish'
required: true
dry-run:
description: 'If true, run publish in dry-run mode'
description: "If true, run publish in dry-run mode (don't actually publish the crate)"
required: false
default: 'false'
type: boolean

run-name: >-
${{ format('Publish Crate {0} {1}', github.event.inputs.crate-name, github.event.inputs.crate-version) }}

permissions:
contents: read
id-token: write

jobs:
publish-crates:
name: Publish Crates
name: Publish Crate ${{ github.event.inputs.crate-name }} ${{ github.event.inputs.crate-version }}
runs-on: ubuntu-latest
environment: publish-crates
steps:
Expand Down
Loading