This commit is contained in:
Yanyutin753
2024-02-16 19:05:03 +08:00
3 changed files with 92 additions and 3 deletions

View File

@@ -0,0 +1,45 @@
name: Build and Push Docker Image -Amd64
on:
release:
types: [ created ]
workflow_dispatch:
inputs:
tag:
description: 'Tag Name'
required: true
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Set tag name
id: tag_name
run: |
if [ "${{ github.event_name }}" = "release" ]; then
echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
elif [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "::set-output name=tag::${{ github.event.inputs.tag }}"
fi
- name: Build and push Docker image with Release tag
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfiles/Dockerfile
push: true
tags: |
yangclivia/gpt4-copilot-java:${{ steps.tag_name.outputs.tag }}-amd64
platforms: linux/amd64

View File

@@ -0,0 +1,45 @@
name: Build and Push Docker Image -Arm64
on:
release:
types: [ created ]
workflow_dispatch:
inputs:
tag:
description: 'Tag Name'
required: true
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Set tag name
id: tag_name
run: |
if [ "${{ github.event_name }}" = "release" ]; then
echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
elif [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "::set-output name=tag::${{ github.event.inputs.tag }}"
fi
- name: Build and push Docker image with Release tag
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfiles/Dockerfile
push: true
tags: |
yangclivia/gpt4-copilot-java:${{ steps.tag_name.outputs.tag }}-arm64
platforms: linux/arm64

View File

@@ -41,7 +41,6 @@ jobs:
file: ./Dockerfiles/Dockerfile
push: true
tags: |
yangclivia/spring-native-image:${{ steps.tag_name.outputs.tag }}
yangclivia/spring-native-image:latest
yangclivia/gpt4-copilot-java:${{ steps.tag_name.outputs.tag }}
yangclivia/gpt4-copilot-java:latest
platforms: linux/amd64,linux/arm64
build-args: TARGETPLATFORM=${{ matrix.platform }}