chore(release): v1.7.205 #1953
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: Continuous Delivery | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# Fetch all history. | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
cache: 'npm' | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline | |
- name: Build | |
run: npm run build | |
- env: | |
GITHUB_TOKEN: ${{ secrets.DOTTBOTT_TOKEN }} | |
id: release | |
name: Release | |
uses: ridedott/release-me-action@v3.10.28 | |
with: | |
node-module: true | |
release-rules: | | |
[ | |
{ "release": "patch", "type": "build" }, | |
{ "release": "patch", "type": "chore" }, | |
{ "release": "patch", "scope": "deps-dev", "subject": "bump typescript*", "type": "chore" }, | |
{ "release": "patch", "type": "ci" }, | |
{ "release": "patch", "type": "docs" }, | |
{ "release": "patch", "type": "improvement" }, | |
{ "release": "patch", "type": "refactor" }, | |
{ "release": false, "scope": "deps-dev", "type": "chore" }, | |
{ "release": false, "subject": "*\\[skip release\\]*" } | |
] | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
registry-url: 'https://npm.pkg.github.com' | |
- env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
if: steps.release.outputs.released == 'true' | |
name: Publish to GitHub Packages | |
run: npm publish | |
- if: steps.release.outputs.released == 'true' | |
name: Setup Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@ridedott' | |
- env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
if: steps.release.outputs.released == 'true' | |
name: Publish to npm | |
run: npm publish | |
- if: steps.release.outputs.released == 'true' | |
name: Output | |
run: | | |
echo released version: ${{ steps.release.outputs.version }}, type: ${{ steps.release.outputs.level }} | |
timeout-minutes: 5 |