-
Notifications
You must be signed in to change notification settings - Fork 12
75 lines (72 loc) · 2.54 KB
/
publish-nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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 "is-ok="1"" >> $GITHUB_OUTPUT
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