Skip to content

Commit

Permalink
Use multiplatform build
Browse files Browse the repository at this point in the history
  • Loading branch information
Anze committed Nov 8, 2020
1 parent 5ce6c8d commit 7f73f81
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v1

- name: Set up QEMU for more platforms
uses: docker/setup-qemu-action@v1
with:
platforms: all

- name: Set docker build as alias to buildx (multiarch build)
uses: docker/setup-buildx-action@v1
id: buildx
with:
install: true

- name: Deploy to Docker Hub
if: success() && startsWith(github.ref, 'refs/tags/v')
Expand All @@ -23,12 +33,13 @@ jobs:
DOCKER_USER: grafolean
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
echo "Available plaftorms: ${{ steps.buildx.outputs.platforms }}"
export VERSION=${GITHUB_REF_TAG:10:50}
echo "Version is $VERSION"
export LAST_KNOWN_VERSION=`git tag -l --sort=-version:refname "v*.*.*" | grep -v rc | head -n 1 | tr -d '[:space:]'`
echo "Last known version is $LAST_KNOWN_VERSION"
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD $DOCKER_REGISTRY
docker build -t "docker.io/$DOCKER_IMAGE:$VERSION" -t "docker.io/$DOCKER_IMAGE:latest" --build-arg VERSION=$VERSION --build-arg VCS_REF=$GITHUB_SHA --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') .
docker build --platform linux/amd64,arm/v7,arm64 -t "docker.io/$DOCKER_IMAGE:$VERSION" -t "docker.io/$DOCKER_IMAGE:latest" --build-arg VERSION=$VERSION --build-arg VCS_REF=$GITHUB_SHA --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') .
[ "$LAST_KNOWN_VERSION" == "$VERSION" ] && docker tag "docker.io/$DOCKER_IMAGE:$VERSION" "docker.io/$DOCKER_IMAGE:latest" || echo "NOT MARKING AS LATEST!"
docker images
docker push "docker.io/$DOCKER_IMAGE:$VERSION"
Expand Down

0 comments on commit 7f73f81

Please sign in to comment.