Skip to content

Smithy-rs dry-run release-e7f103194ae44ba92641b5da0a6664e6898781ea #91

Smithy-rs dry-run release-e7f103194ae44ba92641b5da0a6664e6898781ea

Smithy-rs dry-run release-e7f103194ae44ba92641b5da0a6664e6898781ea #91

# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
# This workflow performs a manual dry-run for smithy-rs release.
# When run, it only produces release artifacts, but will not cut a release tag in GitHub or publish to crates.io.
name: Smithy-rs dry-run release
run-name: ${{ github.workflow }}-${{ inputs.commit_sha }}
on:
workflow_dispatch:
inputs:
commit_sha:
description: |
Commit SHA: The SHA of the git commit that you want to release.
You must use the non-abbreviated SHA (e.g. b2318b0 won't work!).
Alternatively, you can use the name of a branch.
required: true
type: string
skip_ci:
description: Skip CI
required: true
type: boolean
default: true
jobs:
smithy-rs-manual-dry-run-release:
name: Manual dry run release
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: ./.github/workflows/release.yml
with:
commit_sha: ${{ inputs.commit_sha }}
dry_run: true
skip_ci: ${{ inputs.skip_ci }}
secrets:
RELEASE_AUTOMATION_BOT_PAT: ${{ secrets.RELEASE_AUTOMATION_BOT_PAT }}
RELEASE_AUTOMATION_BOT_CRATESIO_TOKEN: ${{ secrets.RELEASE_AUTOMATION_BOT_CRATESIO_TOKEN }}
CANARY_GITHUB_ACTIONS_ROLE_ARN: ${{ secrets.CANARY_GITHUB_ACTIONS_ROLE_ARN }}
CANARY_STACK_CDK_OUTPUTS_BUCKET_NAME: ${{ secrets.CANARY_STACK_CDK_OUTPUTS_BUCKET_NAME }}