Skip to content

Commit

Permalink
Merge pull request #87 from Cassius0924/feat-docker-build–actions
Browse files Browse the repository at this point in the history
[Build] docker build–actions
  • Loading branch information
Cassius0924 authored Mar 8, 2024
2 parents 1d9159f + 9726c12 commit f1bf161
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Push Docker Image
name: Build and Push Docker Image On Push

on:
push:
Expand All @@ -15,15 +15,22 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/[email protected]

- name: Docker Setup Buildx
uses: docker/[email protected]

- name: Docker Login
uses: docker/[email protected]
with:
username: cassius0924
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: cassius0924/wechatter:latest
36 changes: 36 additions & 0 deletions .github/workflows/docker-image-on-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build and Push Docker Image On Release

on:
release:
types:
- published

jobs:

build:

runs-on: ubuntu-latest

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

- name: Set up QEMU
uses: docker/[email protected]

- name: Docker Setup Buildx
uses: docker/[email protected]

- name: Docker Login
uses: docker/[email protected]
with:
username: cassius0924
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: cassius0924/wechatter:${{ github.event.release.tag_name }}

0 comments on commit f1bf161

Please sign in to comment.