feat: add headbolt lane #30
Workflow file for this run
This file contains 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: Build and deploy | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
architecture: x64 | |
cache: "pip" # caching pip dependencies | |
- name: Install Python dependencies | |
run: npm run installDeps | |
- name: Build formats | |
run: npm run build | |
- name: Commit and push changes | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore: build other data formats" | |
commit_options: "--no-verify" |