Skip to content

Commit

Permalink
MODIFY: build-and-push-docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
finalpi committed Nov 26, 2024
1 parent d07a4c6 commit 2259f7f
Showing 1 changed file with 33 additions and 10 deletions.
43 changes: 33 additions & 10 deletions .github/workflows/build-and-push-docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Build and Push Docker Image

on:
workflow_dispatch:
push:
branches:
- 'refactor/ts-single-dev'
tags:
- v*

jobs:
build-and-push:
Expand All @@ -12,28 +13,50 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

# 获取 GitHub Actions 的运行编号作为版本号
- name: Get run number
id: version
run: echo "::set-output name=version::${GITHUB_RUN_NUMBER}"

- 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@v1
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

# - name: Create cache directory
# run: mkdir -p /tmp/.buildx-cache
#
# - name: Cache Docker layers
# uses: actions/cache@v2
# with:
# path: /tmp/.buildx-cache
# key: ${{ runner.os }}-buildx-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-

- name: Generate App Version
run: echo APP_VERSION=`git describe --tags --always` >> $GITHUB_ENV

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: finalpi/wechat2tg-dev:${{ steps.version.outputs.version }}, finalpi/wechat2tg-dev:latest
platforms: linux/amd64
tags: |
finalpi/wechat2tg:latest
finalpi/wechat2tg:${{ env.APP_VERSION }}
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
# cache-from: type=local,src=/tmp/.buildx-cache
# cache-to: type=local,mode=max,dest=/tmp/.buildx-cache

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: finalpi/wechat2tg
readme-filepath: ./README_zh.md
short-description: 'telegram收发微信消息'

0 comments on commit 2259f7f

Please sign in to comment.