Draft release #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Draft release | |
on: | |
workflow_dispatch: | |
inputs: | |
semver_release_type: | |
description: SemVer Level for this Release | |
required: true | |
default: patch | |
type: choice | |
options: | |
- patch | |
- minor | |
- major | |
jobs: | |
update-version: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Bump and commit new version | |
id: bump_version | |
run: | | |
git config --global user.email "<>" | |
git config --global user.name "NJ Feedback Widget Draft Release Action" | |
NEW_VERSION=$(npm version ${{ inputs.semver_release_type }} --no-git-tag-version) | |
git add package.json package-lock.json | |
git commit -m "Bump version to $NEW_VERSION" | |
git push | |
RELEASE_SHA=$(git rev-parse HEAD) | |
echo ::set-output name=new_version::$NEW_VERSION | |
echo ::set-output name=release_sha::$RELEASE_SHA | |
outputs: | |
new_version: ${{ steps.bump_version.outputs.new_version }} | |
release_sha: ${{ steps.bump_version.outputs.release_sha }} | |
draft-release: | |
needs: update-version | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ needs.update-version.outputs.release_sha }} | |
- run: | | |
gh release create ${{ needs.update-version.outputs.new_version }} \ | |
--draft \ | |
--generate-notes \ | |
--target ${{ needs.update-version.outputs.release_sha }} | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |