Skip to content

Merge pull request #136 from takenet/bugfix/fixing-illu-organization #180

Merge pull request #136 from takenet/bugfix/fixing-illu-organization

Merge pull request #136 from takenet/bugfix/fixing-illu-organization #180

Workflow file for this run

name: Publish
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: NPM CI
run: |
npm install
npm run build
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
id: semantic
with:
branch: master
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}