-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from jovotech/v4/dev
🔖 Prepare latest release
- Loading branch information
Showing
61 changed files
with
18,848 additions
and
68,124 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: npm publish | ||
|
||
on: | ||
push: | ||
# start workflow on releases named YYYY-MM-DD-(patch|minor) | ||
# e.g. 2022-04-21-patch, 2022-04-21-2-patch, 2022-04-21-minor | ||
tags: | ||
- "20*" | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
node-version: [14.x] | ||
os: [ubuntu-latest] | ||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: '0' | ||
|
||
- name: Prepare repository | ||
run: git checkout v4/latest | ||
|
||
# take RELEASE_VERSION from release and add to $GITHUB_ENV | ||
- name: Set env | ||
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
|
||
# set RELEASE variable to 'patch' RELEASE_VERSION ends with 'patch' | ||
- if: endsWith(env.RELEASE_VERSION, 'patch') | ||
run: echo "RELEASE=patch" >> $GITHUB_ENV | ||
|
||
# set RELEASE variable to 'minor' RELEASE_VERSION ends with 'minor' | ||
- if: endsWith(env.RELEASE_VERSION, 'minor') | ||
run: echo "RELEASE=minor" >> $GITHUB_ENV | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- name: setup git config | ||
run: | | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "<>" | ||
- run: | | ||
git checkout v4/latest | ||
git push --set-upstream origin v4/latest | ||
- run: npm install --ci | ||
- run: npm run setup:dev | ||
- run: npm run tslint | ||
- run: npm run test | ||
|
||
- name: npm version | ||
uses: mathiasvr/command-output@v1 | ||
id: npmversion | ||
with: | ||
run: | | ||
npm run updateVersions:${{env.RELEASE}} | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.PUBLISH_PACKAGES}} | ||
|
||
- run: | | ||
git add . | ||
git commit -m ":bookmark: Release ${{env.RELEASE_VERSION}}" | ||
git push --set-upstream origin v4/latest | ||
- run: npm run publishPackages | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.PUBLISH_PACKAGES}} | ||
|
||
# Push version bump to v4/dev | ||
- run: | | ||
git checkout v4/dev | ||
git merge v4/latest -m ":twisted_rightwards_arrows: Merge v4/latest into v4/dev" | ||
git push --set-upstream origin v4/dev | ||
- name: Slack Notification | ||
uses: rtCamp/action-slack-notify@v2 | ||
env: | ||
SLACK_TITLE: ":rocket: New ${{env.RELEASE_VERSION}} release" | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_MESSAGE: ${{ steps.npmversion.outputs.stdout }} | ||
MSG_MINIMAL: "actions url" |
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
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
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
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
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
Oops, something went wrong.