Skip to content

chore(ci): Add promotion CI workflow #1

chore(ci): Add promotion CI workflow

chore(ci): Add promotion CI workflow #1

Workflow file for this run

name: promote
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- v5.*
jobs:
build-and-promote:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Build for promotion
run: yarn install --frozen-lockfile && yarn build
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: GitHub Tag Name example
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"
- name: Manual publish
run: |
cd packages/module
npm version ${{ github.ref_name }} --git-tag-version false
npm publish --tag=latest