Update astar and shiden dictionary urls #440
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Convert TypeScript to JSON | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| publish_json: | |
| runs-on: ubuntu-latest | |
| if: "!startsWith(github.event.head_commit.message, '[SKIP CI]') && github.repository == 'subquery/templates'" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build and Deploy | |
| run: npm run build && npm run start | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| message: '[SKIP CI] update output' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }} |