Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 2.5.0 to 2.6.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v2.5.0...v2.6.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
name: Build docker image and push to docker hub on push
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
PLATFORMS: "linux/amd64,linux/arm64,linux/arm/v7"
|
|
|
|
jobs:
|
|
build_and_push:
|
|
name: Build and push Docker image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Extract tag string
|
|
id: git
|
|
shell: bash
|
|
run: |
|
|
RELEASE_VERSION="dev-$(date +%s)"
|
|
echo "::set-output name=image_tag::${RELEASE_VERSION}"
|
|
echo "Action image_tag=${RELEASE_VERSION}"
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Install buildx
|
|
uses: docker/setup-buildx-action@v2.6.0
|
|
|
|
- name: Login to docker hub
|
|
uses: docker/login-action@v2.1.0
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v2.1.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ github.token }}
|
|
|
|
- name: Build and push ${{ github.repository }}:${{ steps.git.outputs.image_tag }}
|
|
uses: docker/build-push-action@v4.0.0
|
|
with:
|
|
platforms: ${{ env.PLATFORMS }}
|
|
push: true
|
|
tags: |
|
|
${{ github.repository }}:${{ steps.git.outputs.image_tag }}
|
|
${{ github.repository }}:development
|
|
ghcr.io/${{ github.repository }}:${{ steps.git.outputs.image_tag }}
|
|
ghcr.io/${{ github.repository }}:development
|
|
|