Skip to content

Commit

Permalink
split docker hub push action to a single file.
Browse files Browse the repository at this point in the history
  • Loading branch information
wangdashuaihenshuai committed Oct 18, 2024
1 parent 1a7a8c0 commit 0cf0b9c
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 16 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: Create and publish a dev Docker image

on:
push:
branches: ["main", "feat/add_docker_hub_spport"]
branches: ["main"]

env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -64,21 +64,6 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

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

- name: Build and push
id: docker_build
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Lark bot notify
env:
TOKEN: ${{ secrets.LARK_BOT_TOKEN }}
Expand Down
73 changes: 73 additions & 0 deletions .github/workflows/build_docker_hub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.

name: docker hub Create and publish a dev Docker image

on:
push:
branches: ["main", "feat/add_docker_hub_spport"]

env:
USER_NAME: huolalatech
IMAGE_NAME: page-spy-web

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set Node.js 19.x
uses: actions/setup-node@v3
with:
node-version: 19.x

- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install --ignore-optional

- name: Build
run: |
yarn run build:client
cp -r dist backend/dist
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ env.USER_NAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.USER_NAME }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker hub image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Lark bot notify
env:
TOKEN: ${{ secrets.LARK_BOT_TOKEN }}
run: |
BRANCH_NAME=$(echo $GITHUB_REF | sed 's/refs\/heads\///')
curl "https://pagespy.blucas.me/lark/ci?branch=$BRANCH_NAME&actionId=$GITHUB_RUN_ID" \
-X POST \
-H "token: $TOKEN"

0 comments on commit 0cf0b9c

Please sign in to comment.