diff options
| author | adamjanovsky | 2023-11-27 09:55:08 +0100 |
|---|---|---|
| committer | GitHub | 2023-11-27 09:55:08 +0100 |
| commit | 4e64eed8df86d936919aece2f6ce0c2bc12fada4 (patch) | |
| tree | 47d476b4464a17d087b6c94f5d85bd7c9c2e8c7c /.github/workflows/release.yml | |
| parent | 4f85757006692fc64fd9a6fbffce7442dbf9644c (diff) | |
| parent | 8e8c74c76f9f2ede6c130cb74d449a3452357f11 (diff) | |
| download | sec-certs-0.1.6.tar.gz sec-certs-0.1.6.tar.zst sec-certs-0.1.6.zip | |
Merge pull request #376 from crocs-muni/issue/375-Provide-sec-certs-container-build-on-linuxarm64-platform0.1.6
add action to try multiarch build
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1ab6081f..e57e88d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,21 +37,26 @@ jobs: steps: - name: Check out the repo uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + uses: docker/metadata-action@v5 with: images: seccerts/sec-certs - name: Build and push id: docker_build - uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + uses: docker/build-push-action@v5 with: context: . + platforms: linux/amd64,linux/arm64 file: Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} |
