Build & Create Release PR #20
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: Build & Create Release PR | |
on: | |
workflow_dispatch: | |
# Inputs the workflow accepts. | |
inputs: | |
version: | |
description: 'Release version' | |
required: true | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Update version | |
run: | | |
npm version ${{ github.event.inputs.version }} --allow-same-version --no-git-tag-version | |
- name: Commit package.json | |
uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081 | |
with: | |
author_name: Link- | |
author_email: [email protected] | |
message: 'Update version' | |
add: 'package.json' | |
push: false | |
- name: Build package | |
run: | | |
npm run build | |
- name: Commit new build | |
uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081 | |
with: | |
author_name: Link- | |
author_email: [email protected] | |
message: 'Update build' | |
add: 'bin/starred_search' | |
push: false | |
- name: Create PR | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: 'Release ${{ github.event.inputs.version }}' | |
title: 'Release ${{ github.event.inputs.version }}' | |
base: master | |
branch: ${{ github.event.inputs.version }} | |
delete-branch: true | |
labels: | | |
release | |
ignore-for-release | |
reviewers: 'Link-' | |
assignees: 'Link-' | |
draft: false |