Skip to content

Release

Release #124

Workflow file for this run

name: Release
on: [workflow_dispatch]
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions: write-all
strategy:
matrix:
node-version: [20.x]
steps:
- name: ⬇️ Checkout Repository
uses: actions/checkout@v3
- name: 🔧 Setup Git
run: |
git config --global user.email "bot@webdriver.io"
git config --global user.name "WebdriverIO Release Bot"
- name: 🔧 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: 🔧 Setup NPM
run: |
npm set registry "https://registry.npmjs.org/"
npm set //registry.npmjs.org/:_authToken $NPM_TOKEN
npm whoami
- name: 🔧 Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: 🧩 Install Dependencies
run: pnpm pnpm.install.workaround
- name: 🏗️ Build
id: build-the-mono-repo
run: |
pnpm build
- name: 📣 Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: pnpm release
setupGitUser: false
commit: "chore: release [skip ci]"