Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No binaries in the release 0.0.29 #7295

Open
YDX-2147483647 opened this issue Feb 11, 2025 · 0 comments
Open

No binaries in the release 0.0.29 #7295

YDX-2147483647 opened this issue Feb 11, 2025 · 0 comments

Comments

@YDX-2147483647
Copy link
Contributor

YDX-2147483647 commented Feb 11, 2025

https://github.com/uutils/coreutils/releases/tag/0.0.29 did not publish binaries in assets. Is there something broken?

Possible cause

According to https://github.com/uutils/coreutils/actions/runs/12844591541/job/35817804155, the Publish step was skipped, because the workflow was not triggered by a tag.

GITHUB_REF=refs/heads/main
steps.vars.outputs.REF_TAG=
steps.vars.outputs.DEPLOY=

unset REF_TAG ; case "${GITHUB_REF}" in refs/tags/*) REF_TAG=${GITHUB_REF#refs/tags/} ;; esac;

# deployable tag? (ie, leading "vM" or "M"; M == version number)
unset DEPLOY ; if [[ $REF_TAG =~ ^[vV]?[0-9].* ]]; then DEPLOY='true' ; fi
outputs DEPLOY

- name: Publish
uses: softprops/action-gh-release@v2
if: steps.vars.outputs.DEPLOY

In the 0.0.28 release, https://github.com/uutils/coreutils/actions/runs/11872661297 was triggered by the tag 0.0.28, and https://github.com/uutils/coreutils/actions/runs/11872414805 was triggered by main. The former published binaries.

GITHUB_REF=refs/tags/0.0.28
steps.vars.outputs.REF_TAG=0.0.28
steps.vars.outputs.DEPLOY=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant