Skip to content

Fixed 11?

Fixed 11? #27

Workflow file for this run

# This file updates the NUSPEC(s) in the repo checking the API
name: Zulu nuspec updater
on:
schedule:
- cron: '*/5 * * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT || github.token }}
- name: nuspec sync
shell: bash
run: |
./scripts/zulu-sync.sh >> $GITHUB_OUTPUT
id: zulu_sync
- name: repo update
shell: bash

Check failure on line 22 in .github/workflows/zulu-update.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/zulu-update.yaml

Invalid workflow file

You have an error in your yaml syntax on line 22
id: repo_update
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "$(date)"
git push