Skip to content

Merge pull request #138 from Gunichi/main #85

Merge pull request #138 from Gunichi/main

Merge pull request #138 from Gunichi/main #85

Workflow file for this run

name: Semantic Release
on:
push:
branches:
- "develop"
defaults:
run:
working-directory: chakra-ui-steps
jobs:
version:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v1
with:
node-version: "16"
registry-url: https://registry.npmjs.org/
- run: yarn
- run: npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}