Skip to content

Publish new version #125

Publish new version

Publish new version #125

Workflow file for this run

name: Publish new version
on:
workflow_dispatch:
schedule:
- cron: "0 7 * * *"
repository_dispatch:
types:
- webhook
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
date +%s > lastUpdate
git config user.name SrGobi
git config user.email alejandro@espcustoms.xyz
git add lastUpdate
git diff --quiet && git diff --staged --quiet || git commit -m "[bot] Update blog with latest"
git push origin main