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
|
|
|
|
steps:
|
2022-07-03 21:52:44 +08:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- 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 }}
|
|
|
|
|
|
|
|
- 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
|
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
|
2022-07-03 20:54:42 +08:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-12-14 10:17:24 +08:00
|
|
|
push: true
|
2022-09-16 23:34:57 +08:00
|
|
|
tags: neosmemo/memos:latest, neosmemo/memos:${{ env.VERSION }}
|