Skip to content

Commit

Permalink
Release workflow inited.
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaskov committed Aug 16, 2023
1 parent b06b012 commit 4ae7ad5
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: release

on:
pull_request:
paths-ignore:
- 'docs/**'
- '.clang-format'
- '.gitignore'
- 'README.md'
workflow_dispatch:
inputs:
release_type:
type: choice
description: Release type
options:
- major
- minor
- patch
default: patch

jobs:
release:
runs-on: [ ubuntu-22.04 ]
environment: prod

steps:
- name: Check out branch
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}

- name: Setup Node.js environment
uses: actions/[email protected]

- name: Set git user
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email '[email protected]'
- name: Update version in package.json
run: |
npm version patch -m "${{ inputs.release_type }} release %s"
git status
- name: Push changes
uses: ad-m/github-push-action@master
with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.event.pull_request.head.ref }}
tags: true

- name: Install dependencies and build 🔧
run: npm ci && npm run build
- name: Publish package on NPM
run: npm publish

0 comments on commit 4ae7ad5

Please sign in to comment.