Skip to content

chore: bump version to 0.3.0 #62

chore: bump version to 0.3.0

chore: bump version to 0.3.0 #62

Workflow file for this run

name: SUIET_KIT_CICD_PIPELINE
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }} # TODO: enable pnpm cache (setup-node@v3 has issues with pnpm@7)
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Build all packages
run: npm run build:all
- name: Publish all packages
run: npm run ci:publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{github.ref_name}}
prerelease: false
title: "${{ env.RELEASE_VERSION }}"