2022-03-29 20:55:02 +08:00
|
|
|
name: build-and-push-release-image
|
2021-12-14 10:17:24 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-03-29 20:53:43 +08:00
|
|
|
# Run on pushing branches like `release/1.0.0`
|
2022-09-16 23:04:40 +08:00
|
|
|
- "release/*.*.*"
|
2021-12-14 10:17:24 +08:00
|
|
|
|
|
|
|
jobs:
|
2022-05-17 22:17:37 +08:00
|
|
|
build-and-push-release-image:
|
2021-12-14 10:17:24 +08:00
|
|
|
runs-on: ubuntu-latest
|
2023-04-09 16:32:27 +08:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
2021-12-14 10:17:24 +08:00
|
|
|
steps:
|
2023-10-03 16:58:47 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-07-03 21:52:44 +08:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
2021-12-14 10:17:24 +08:00
|
|
|
|
2022-03-29 20:53:43 +08:00
|
|
|
- name: Extract build args
|
|
|
|
# Extract version from branch name
|
2022-09-16 23:15:16 +08:00
|
|
|
# Example: branch name `release/1.0.0` sets up env.VERSION=1.0.0
|
2022-03-29 20:53:43 +08:00
|
|
|
run: |
|
2022-09-16 23:15:16 +08:00
|
|
|
echo "VERSION=${GITHUB_REF_NAME#release/}" >> $GITHUB_ENV
|
2022-03-29 20:53:43 +08:00
|
|
|
|
2021-12-14 10:17:24 +08:00
|
|
|
- name: Login to Docker Hub
|
2022-07-03 21:52:44 +08:00
|
|
|
uses: docker/login-action@v2
|
2021-12-14 10:17:24 +08:00
|
|
|
with:
|
2022-07-01 20:39:48 +08:00
|
|
|
username: neosmemo
|
2021-12-14 10:17:24 +08:00
|
|
|
password: ${{ secrets.DOCKER_NEOSMEMO_TOKEN }}
|
|
|
|
|
2023-04-09 16:32:27 +08:00
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ github.token }}
|
|
|
|
|
2021-12-14 10:17:24 +08:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2022-07-03 21:29:25 +08:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2022-07-03 21:52:44 +08:00
|
|
|
with:
|
|
|
|
install: true
|
2023-02-15 22:16:45 +08:00
|
|
|
version: v0.9.1
|
2021-12-14 10:17:24 +08:00
|
|
|
|
2023-04-09 16:32:27 +08:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v4
|
|
|
|
with:
|
|
|
|
images: |
|
|
|
|
neosmemo/memos
|
|
|
|
ghcr.io/usememos/memos
|
|
|
|
tags: |
|
2023-04-10 08:08:38 +08:00
|
|
|
type=raw,value=latest
|
|
|
|
type=semver,pattern={{version}},value=${{ env.VERSION }}
|
|
|
|
type=semver,pattern={{major}}.{{minor}},value=${{ env.VERSION }}
|
|
|
|
type=semver,pattern={{major}},value=${{ env.VERSION }}
|
2023-04-09 16:32:27 +08:00
|
|
|
|
2021-12-14 10:17:24 +08:00
|
|
|
- name: Build and Push
|
|
|
|
id: docker_build
|
2022-07-03 20:54:42 +08:00
|
|
|
uses: docker/build-push-action@v3
|
2021-12-14 10:17:24 +08:00
|
|
|
with:
|
|
|
|
context: ./
|
|
|
|
file: ./Dockerfile
|
2023-10-21 08:29:21 +08:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-12-14 10:17:24 +08:00
|
|
|
push: true
|
2023-04-09 16:32:27 +08:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|