Publish nightly to NPM #1
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: Publish nightly to NPM | |
# Controls when the action will run. | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
publish: | |
name: Publish to NPM (nightly) | |
runs-on: ubuntu-latest | |
continue-on-error: false | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Check if token is set | |
id: check-npm-token | |
run: | | |
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then | |
echo "env NPM_TOKEN not set!" | |
else | |
echo ::set-output name=is-ok::"1" | |
fi | |
- name: Prepare Environment | |
if: ${{ steps.check-npm-token.outputs.is-ok }} | |
run: | | |
yarn | |
env: | |
CI: true | |
- name: Get the Prerelease tag | |
id: prerelease-tag | |
uses: yuya-takeyama/docker-tag-from-github-ref-action@2b0614b1338c8f19dd9d3ea433ca9bc0cc7057ba | |
with: | |
remove-version-tag-prefix: false | |
- name: Bump version to nightly | |
if: ${{ steps.check-npm-token.outputs.is-ok }} | |
run: | | |
COMMIT_TIMESTAMP=$(git log -1 --pretty=format:%ct HEAD) | |
COMMIT_DATE=$(date -d @$COMMIT_TIMESTAMP +%Y%m%d-%H%M%S) | |
GIT_HASH=$(git rev-parse --short HEAD) | |
PRERELEASE_TAG=0.0.0-nightly-$(echo "${{ steps.prerelease-tag.outputs.tag }}" | sed -r 's/[^a-z0-9]+/-/gi') | |
yarn lerna:version $PRERELEASE_TAG-$COMMIT_DATE-$GIT_HASH --force-publish=* --no-changelog --no-push --no-git-tag-version --yes | |
env: | |
CI: true | |
- name: Build | |
if: ${{ steps.check-npm-token.outputs.is-ok }} | |
run: | | |
yarn build | |
env: | |
CI: true | |
- name: Set .npmrc file | |
if: ${{ steps.check-npm-token.outputs.is-ok }} | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
npm whoami | |
- name: Git commit | |
if: ${{ steps.check-npm-token.outputs.is-ok }} | |
run: | | |
git config --global user.email "ci@github.com" | |
git config --global user.name "Github CI" | |
git add -A | |
git commit -m "Make lerna happy" | |
env: | |
CI: true | |
- name: Publish nightly to NPM | |
if: ${{ steps.check-npm-token.outputs.is-ok }} | |
run: yarn lerna:publish from-package --dist-tag nightly --no-verify-access --yes | |
env: | |
CI: true |