adhocore / gronx

Lightweight, fast and dependency-free Cron expression parser (due checker, next/prev due date finder), task runner, job scheduler and/or daemon for Golang (tested on v1.13+) and standalone usage. If you are bold, use it to replace crontab entirely.
https://github.com/adhocore/gronx
MIT License
422 stars 25 forks source link

Update .goreleaser.yml to Fix GitHub Actions Builds #49

Closed yeganemehr closed 1 month ago

yeganemehr commented 1 month ago

The current .goreleaser.yml file uses outdated syntax (version 0), causing GitHub Actions to fail with the error:

"Only configuration files on version: 2 are supported; yours is version: 0. Please update your configuration."

I’ve updated the config file to match the latest GoReleaser docs. With this fix, all builds run smoothly on Actions, and the binaries are properly attached to releases, making the release process automatic again.

adhocore commented 1 month ago

thank you 🎉