mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
23 lines
695 B
YAML
23 lines
695 B
YAML
name: release-it
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Increment "major", "minor", "patch", or "pre*" version; or specify version'
|
|
default: patch
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "lts/*"
|
|
registry-url: https://registry.npmjs.org/
|
|
- name: Release
|
|
working-directory: release-it
|
|
run: |
|
|
npm i
|
|
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
|
git config user.name "${GITHUB_ACTOR}"
|
|
npx release-it --ci -- "${{ github.event.inputs.version }}"
|