Skip to content

Zulu nuspec updater #3966

Zulu nuspec updater

Zulu nuspec updater #3966

Workflow file for this run

# This file updates the NUSPEC(s) in the repo checking the API
name: Zulu nuspec updater
on:
workflow_dispatch:
schedule:
- cron: '*/45 */19 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT || github.token }}
- id: zulu_sync
shell: bash
run: |
./scripts/zulu-sync.sh
- id: repo_update
shell: bash
run: |
git config user.name github-actions
git config user.email [email protected]
git commit -a -m "Zulu version update on $(date)" && git push || echo "No changes"