Skip to content

Sapmachine nuspec updater #1059

Sapmachine nuspec updater

Sapmachine nuspec updater #1059

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