develop #14
Loading…
Reference in a new issue
No description provided.
Delete branch "develop"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The deploy.yml workflow_dispatch input always defaulted to 'v0.1.0', requiring manual edit every time. Now the version defaults to 'auto', which fetches all tags, finds the latest v* tag via semver sort, bumps the patch component, and uses that as the deploy tag. Changes: - deploy.yml input: default changed to 'auto', required → false, description updated to explain both auto and manual modes - Added 'Resolve version' step: fetches tags, bumps latest semver tag by patch, validates output format, exports to $VERSION - 'Tag version' step: substituted ${{ github.event.inputs.version }} → ${{ env.VERSION }} to use the resolved/computed version - 'Print deploy status' step: same substitution - Semver validation guard rejects malformed tags (auto and manual)