Skip to content

Update README.md

Update README.md #3

Workflow file for this run

name: Build TS
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install
run: yarn install && yarn package
- name: Update Files
uses: test-room-7/action-update-file@v1
with:
file-path: 'dist/*.*'
commit-msg: Update dist files
github-token: ${{ secrets.GITHUB_TOKEN }}