Skip to content

Build and Sync

Build and Sync #110

Workflow file for this run

name: Build and Sync
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Update z-core submodule
run: |
git submodule update --remote --merge
echo "Submodule updated to latest remote version."
- name: Run Make
run: make bundle
- name: Commit and Push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Auto-update: Bump z-core [skip ci]"
file_pattern: 'zstr.h'