mirror of
https://github.com/gravitl/netmaker.git
synced 2026-02-04 10:09:01 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
94 lines
2.4 KiB
YAML
94 lines
2.4 KiB
YAML
name: Publish Docker
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: 'docker tag'
|
|
required: true
|
|
workflow_call:
|
|
inputs:
|
|
tag:
|
|
type: string
|
|
required: true
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Set tag
|
|
run: |
|
|
if [[ -n "${{ inputs.tag }}" ]]; then
|
|
TAG=${{ inputs.tag }}
|
|
elif [[ "${{ github.ref_name }}" == 'master' ]]; then
|
|
TAG="latest"
|
|
else
|
|
TAG="${{ github.ref_name }}"
|
|
fi
|
|
echo "TAG=${TAG}" >> $GITHUB_ENV
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v6
|
|
-
|
|
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@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
-
|
|
name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64, linux/arm64, linux/arm/v7
|
|
push: true
|
|
tags: ${{ github.repository }}:${{ env.TAG }}
|
|
build-args: |
|
|
tags=ce
|
|
|
|
docker-pro:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Set tag
|
|
run: |
|
|
if [[ -n "${{ inputs.tag }}" ]]; then
|
|
TAG=${{ inputs.tag }}
|
|
elif [[ "${{ github.ref_name }}" == 'master' ]]; then
|
|
TAG="latest"
|
|
else
|
|
TAG="${{ github.ref_name }}"
|
|
fi
|
|
echo "TAG=${TAG}" >> $GITHUB_ENV
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v6
|
|
-
|
|
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@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
-
|
|
name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64, linux/arm64
|
|
push: true
|
|
tags: ${{ github.repository }}:${{ env.TAG }}-ee
|
|
build-args: |
|
|
tags=ee
|