This repository was archived by the owner on Nov 15, 2024. It is now read-only.
Cut major #29
This file contains hidden or 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: Version | |
run-name: Cut ${{ github.event.inputs.version }} | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version to cut | |
required: true | |
jobs: | |
tag: | |
name: Tag | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v5 | |
with: | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
git_committer_name: ${{ secrets.GIT_USER_NAME }} | |
git_committer_email: ${{ secrets.GIT_USER_EMAIL }} | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Cut ${{ github.event.inputs.version }} version | |
run: npm version --sign-git-tag=true ${{ github.event.inputs.version }} |