Skip to content

Commit

Permalink
fix: create draft release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davenewza committed Oct 25, 2023
1 parent 731d182 commit fb20028
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/NEW_draft_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ name: New Draft Release

on:
workflow_dispatch:

inputs:
ref:
description: "The ref to release"
required: true
type: string
jobs:
setup:
name: Generate Version
runs-on: ubuntu-latest
steps:
- uses: pnpm/[email protected]
Expand All @@ -15,6 +18,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: "${{ inputs.ref }}"
fetch-depth: 0

- name: Generate version
Expand Down

0 comments on commit fb20028

Please sign in to comment.