|
|
@@ -252,7 +252,9 @@ jobs:
|
|
|
uses: actions/checkout@v3
|
|
|
- run: |
|
|
|
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
|
|
|
- docker buildx build . --push \
|
|
|
- -t ghcr.io/${GITHUB_REPOSITORY}:${GITHUB_REF/refs\/tags\//} \
|
|
|
+ docker buildx build . \
|
|
|
+ --push \
|
|
|
+ --provenance=false \
|
|
|
+ --tag ghcr.io/${GITHUB_REPOSITORY}:${GITHUB_REF/refs\/tags\//} \
|
|
|
--platform linux/arm64,linux/amd64 \
|
|
|
--label org.opencontainers.image.description="Solidity Compiler for Solana and Substrate version $(git describe --tags)"
|