We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our Github Actions aren't pushing the correct docker image tag. See https://github.com/brightsparklabs/appcli/runs/5280840366?check_suite_focus=true
It is pushing docker push brightsparklabs/appcli:1d1642d without the git tag information.
docker push brightsparklabs/appcli:1d1642d
The tag is being generated by git describe --always --dirty in Makefile: https://github.com/brightsparklabs/appcli/blob/develop/Makefile#L14
git describe --always --dirty
Makefile
I think this is related to some weird git pull as part of the 'checkout' action. May need to set fetch-depth: 0. See https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches actions/checkout#290 actions/checkout#250
fetch-depth: 0
The text was updated successfully, but these errors were encountered:
We should be able to fix and test this somewhat locally by:
APP_VERSION
and iterate as required.
Sorry, something went wrong.
Pretty sure this issue is related to actions/checkout#240
Testing with nektos/act isn't proving to be fruitful, as I don't think it's actually pulling the repo (it's only acting on the local git)
nektos/act
Fixed with 32e37dd
No branches or pull requests
Our Github Actions aren't pushing the correct docker image tag. See https://github.com/brightsparklabs/appcli/runs/5280840366?check_suite_focus=true
It is pushing
docker push brightsparklabs/appcli:1d1642d
without the git tag information.The tag is being generated by
git describe --always --dirty
inMakefile
: https://github.com/brightsparklabs/appcli/blob/develop/Makefile#L14I think this is related to some weird git pull as part of the 'checkout' action. May need to set
fetch-depth: 0
. See https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branchesactions/checkout#290
actions/checkout#250
The text was updated successfully, but these errors were encountered: