mirror of
https://code.forgejo.org/actions/git-backporting.git
synced 2025-06-06 05:14:31 -04:00
build: package release automation
This commit is contained in:
parent
5ead31f606
commit
23e552c38c
4 changed files with 40 additions and 3 deletions
35
.github/workflows/release.yml
vendored
Normal file
35
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
name: "release package"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
options:
|
||||
description: 'Additional release-it options'
|
||||
required: false
|
||||
default: '--dry-run'
|
||||
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release package
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
- name: git config
|
||||
run: |
|
||||
git config user.name "${GITHUB_ACTOR}"
|
||||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
|
||||
- name: npm config
|
||||
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
|
||||
- run: npm ci
|
||||
# the version/changelog must be already updated on main branch using "npm run release:prepare"
|
||||
- run: npm run release --ci --no-increment --no-git.commit ${{ github.event.inputs.options }}
|
Loading…
Add table
Add a link
Reference in a new issue