Merge pull request #62 from patternfly/fix-overlap-bug #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |