Skip to content

Commit

Permalink
Create docker-build-push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hslr-s authored Nov 19, 2023
1 parent c84eae3 commit a6a521f
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: docker-build-push

on:
workflow_dispatch:
push:
tags:
- 'v*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Read version from file
id: read_version
run: echo "APP_VERSION=$(cut -d '|' -f 2 ./assets/VERSION)" >> $GITHUB_ENV

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

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

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
with:
context: . # 这里在项目根目录找Dockerfile构建
platforms: linux/amd64,linux/arm,linux/arm64
push: true
tags: ${{ vars.DOCKER_IMAGE_NAME }}:${{ env.APP_VERSION }}, ${{ vars.DOCKER_IMAGE_NAME }}

0 comments on commit a6a521f

Please sign in to comment.