Skip to content

chore: release 1.5.3 #40

chore: release 1.5.3

chore: release 1.5.3 #40

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@v4
- name: Set up Python
uses: actions/setup-python@v5
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@v5
with:
commit_message: "chore: build other data formats"
commit_options: "--no-verify"