Skip to content

Update

Update #45

Workflow file for this run

name: build
on:
push:
paths:
- 'src/**'
workflow_dispatch:
jobs:
update:
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
steps:
- name: disable auto crlf
uses: steve02081504/disable-autocrlf@v1
with:
fuck-auto-CRLF: true
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: latest
- run: npm install
- run: npm run build:dist
- name: add all
run: git add -A
- name: push
uses: actions-go/push@master
with:
author-email: [email protected]
author-name: Taromati2
commit-message: 'file update~'
remote: origin
token: ${{ secrets.BOT_TOKEN }}