Skip to content

Commit

Permalink
Merge pull request #61 from intelligentfu/workflow
Browse files Browse the repository at this point in the history
add docker workflow
  • Loading branch information
intelligentfu authored Nov 21, 2023
2 parents 3c9d778 + da887ae commit 8a5f560
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/docker_action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: docker
on:
push:
tags: "*.*.*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: selectdb/doris.k8s-operator

- name: Doris Debug meta
id: debug_meta
uses: docker/metadata-action@v5
with:
images: selectdb/doris-debug-ubuntu

- name: env
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
env:
Version: ${{ steps.vars.outputs.tag }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
env:
Version: ${{ steps.vars.outputs.tag }}
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 8a5f560

Please sign in to comment.