プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

create release-it action

Kohei Watanabe (Aug 29, 2021, 5:41 PM +0900) de94a115 5e71d469

+24
+23
.github/workflows/release-it.yml
··· 1 + name: release-it 2 + on: 3 + workflow_dispatch: 4 + inputs: 5 + version: 6 + description: 'Increment "major", "minor", "patch", or "pre*" version; or specify version' 7 + default: patch 8 + jobs: 9 + main: 10 + runs-on: ubuntu-latest 11 + steps: 12 + - uses: actions/checkout@v2 13 + - uses: actions/setup-node@v2 14 + with: 15 + node-version: "lts/*" 16 + registry-url: https://registry.npmjs.org/ 17 + - name: Release 18 + working-directory: release-it 19 + run: | 20 + npm i 21 + git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" 22 + git config user.name "${GITHUB_ACTOR}" 23 + npx release-it --ci -- "${{ github.event.inputs.version }}"
+1
release-it/CHANGELOG.md
··· 8 8 ### Added 9 9 10 10 - addUnreleased, addVersionUrl 11 + - create release-it action 11 12 12 13 ### Fixed 13 14