Skip to content

Merge pull request #6 from Ebonsignori/add-webex-support #54

Merge pull request #6 from Ebonsignori/add-webex-support

Merge pull request #6 from Ebonsignori/add-webex-support #54

Workflow file for this run

name: 🚀 Release
on:
workflow_dispatch: {}
push:
branches:
- main
- beta
- "*.x"
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: npm
# install semantic-release plugins
- run: npm install --no-save semantic-release-plugin-github-breaking-version-tag
# configure git to push commit back to release branch with build
- run: |
git config user.name "Evan Bonsignori"
git config user.email "[email protected]"
# do the release
- run: npx semantic-release --debug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}