Skip to content

feat: add brent cross west #31

feat: add brent cross west

feat: add brent cross west #31

Workflow file for this run

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"