Skip to content

sync v6.0.10 (https://github.com/WillBooster/one-way-git-sync/commits… #151

sync v6.0.10 (https://github.com/WillBooster/one-way-git-sync/commits…

sync v6.0.10 (https://github.com/WillBooster/one-way-git-sync/commits… #151

Workflow file for this run

name: Release
on:
push:
branches:
- 'main'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Show environment information
run: |
echo "node: $(node -v)"
echo "yarn: $(yarn -v)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: .yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install
- run: yarn build
- run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}