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
For polkadot-staking-miner, docker images are pushed with this naming convention: branchName-7 characters of the commit SHA Exp:main-b250ced As a result of this line in the Job. If we change the follwing, I think it will fix the issue.
polkadot-staking-miner
branchName
7 characters of the commit SHA
echo IMAGE_TAG=$(if [ -n "$GITHUB_REF_NAME" ]; then echo "$GITHUB_REF_NAME"; else echo "main-${GITHUB_SHA::7}"; fi) >> $GITHUB_ENV
The text was updated successfully, but these errors were encountered:
PR
Sorry, something went wrong.
No branches or pull requests
For
polkadot-staking-miner
, docker images are pushed with this naming convention:branchName
-7 characters of the commit SHA
Exp:main-b250ced
As a result of this line in the Job.
If we change the follwing, I think it will fix the issue.
The text was updated successfully, but these errors were encountered: