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

feat(cli): Create GHA workflow for creating CLI release. #26096

Closed
wants to merge 1 commit into from
Closed
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
28 changes: 28 additions & 0 deletions .github/workflows/cli-release-process.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: dotCLI Release
on:
workflow_dispatch:
inputs:
version:
description: 'Release version'
required: true
next:
description: 'Next version'
required: false

defaults:
run:
shell: bash

jobs:
precheck:
name: Pre-check
runs-on: ubuntu-latest
outputs:
RELEASE_VERSION: ${{ steps.vars.outputs.version }}
NEXT_VERSION: ${{ steps.vars.outputs.next }}
steps:
- name: Print inputs
run: |
echo "RELEASE_VERSION=$RELEASE_VERSION"
echo "NEXT_VERSION=$NEXT_VERSION"