Skip to content

Merge pull request #45 from catchain/tonscan-patch-1 #44

Merge pull request #45 from catchain/tonscan-patch-1

Merge pull request #45 from catchain/tonscan-patch-1 #44

Workflow file for this run

name: Rebuild autogenerated files on commit to master
on:
push:
paths:
- source/*
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- run: npm install
- run: npm run build
- run: |
if [[ `git status --porcelain` ]]; then
git config --global user.name "github-actions"
git config --global user.email "github-actions@users.noreply.github.com"
git add -A --force
git commit -m 'Regenerate addressbook'
git push
fi