Skip to content

Commit

Permalink
chore: build docker
Browse files Browse the repository at this point in the history
  • Loading branch information
missuo committed May 29, 2023
1 parent 684ecb4 commit 2ced7ee
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 101 deletions.
44 changes: 21 additions & 23 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ on:
- dev
tags:
- 'v*'

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
IMAGE_NAME: missuo/deeplx
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
GHCR_TOKEN: ${{ secrets.GT_Token }}
GHCR_USERNAME: ${{ github.repository_owner }}

jobs:

docker_build:
runs-on: ubuntu-latest

Expand All @@ -34,27 +36,35 @@ jobs:
with:
version: latest

- name: Login to DockerHub
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ env.DOCKER_USERNAME }}
password: ${{ env.DOCKER_PASSWORD }}

- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GT_Token }}
username: ${{ env.GHCR_USERNAME }}
password: ${{ env.GHCR_TOKEN }}

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
# list of Docker images to use as base name for tags
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
images: |
docker.io/${{ env.IMAGE_NAME }}
ghcr.io/${{ env.IMAGE_NAME }}
# generate Docker tags based on the following events/attributes
tags: |
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/') }}
type=pep440,pattern={{raw}},enable=${{ startsWith(github.ref, 'refs/tags/') }}
tpye=raw,value=dev,enable=${{ github.ref == 'refs/heads/dev' }}
type=raw,value=dev,enable=${{ github.ref == 'refs/heads/dev' }}
- name: Build dev branch and push
if: github.ref == 'refs/heads/dev'
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
Expand All @@ -64,15 +74,3 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build release and push
if: startsWith(github.ref, 'refs/tags/')
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
78 changes: 0 additions & 78 deletions .github/workflows/dockerhub.yaml

This file was deleted.

0 comments on commit 2ced7ee

Please sign in to comment.