Skip to content

Merge pull request #1 from o2project/dependabot/npm_and_yarn/kubosho/… #2

Merge pull request #1 from o2project/dependabot/npm_and_yarn/kubosho/…

Merge pull request #1 from o2project/dependabot/npm_and_yarn/kubosho/… #2

Workflow file for this run

name: Release
on:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Release script
run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}