2023-10-21 12:19:27 +00:00
|
|
|
name: "Docker Publish"
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*.*.*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
2024-01-09 16:40:59 +00:00
|
|
|
|
2023-10-21 12:19:27 +00:00
|
|
|
steps:
|
2024-01-14 17:19:02 +00:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4 # peter-evans/dockerhub-description need checkout README.md
|
2024-01-09 16:40:59 +00:00
|
|
|
- name: Docker Setup QEMU
|
|
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
id: qemu
|
|
|
|
with:
|
|
|
|
platforms: amd64,arm64
|
2023-10-21 12:19:27 +00:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: moonrailgun/tianji
|
2023-12-10 13:18:39 +00:00
|
|
|
tags: |
|
|
|
|
type=semver,pattern={{version}}
|
2023-10-21 12:19:27 +00:00
|
|
|
- name: Login to DockerHub
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2024-01-09 16:40:59 +00:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
2023-10-21 12:19:27 +00:00
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
2024-01-09 16:40:59 +00:00
|
|
|
# context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-10-21 12:19:27 +00:00
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2023-10-21 16:28:17 +00:00
|
|
|
- name: Update repo description
|
|
|
|
uses: peter-evans/dockerhub-description@v3
|
2024-01-14 17:19:02 +00:00
|
|
|
continue-on-error: true
|
2023-10-21 16:28:17 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
repository: moonrailgun/tianji
|
|
|
|
readme-filepath: ./README.md
|