1. 控制台前端版本切回v0.3.12,新版本问题全部处理好后再切回新版 #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Publish | |
on: | |
push: | |
# branches: | |
# - master | |
tags: [ 'v*', 't*' ] | |
workflow_dispatch: | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: use gnu dockerfile | |
run: cp docker/gnu_dockerfile Dockerfile | |
- name: Set up QEMU | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: docker/setup-buildx-action@v2 | |
- uses: docker/metadata-action@v4 | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
id: meta | |
with: | |
images: ${{ secrets.DOCKERHUB_USERNAME }}/rnacos | |
- name: Login to Docker Hub | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
if: ${{ startsWith(github.ref, 'refs/tags/') && ( contains(github.ref, 'alpha') || contains(github.ref, 'beta') ) }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Build and push with latest | |
if: ${{ startsWith(github.ref, 'refs/tags/') && !( contains(github.ref, 'alpha') || contains(github.ref, 'beta') ) }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{ steps.meta.outputs.tags }} | |
${{ secrets.DOCKERHUB_USERNAME }}/rnacos:stable | |
labels: ${{ steps.meta.outputs.labels }} | |
docker-alpine: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: use alpine dockerfile | |
run: cp docker/alpine_dockerfile Dockerfile | |
- name: Set up QEMU | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: docker/setup-buildx-action@v2 | |
- uses: docker/metadata-action@v4 | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
id: meta | |
with: | |
images: ${{ secrets.DOCKERHUB_USERNAME }}/rnacos | |
flavor: | | |
latest=false | |
suffix=-alpine | |
- name: Login to Docker Hub | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
if: ${{ startsWith(github.ref, 'refs/tags/') && ( contains(github.ref, 'alpha') || contains(github.ref, 'beta') ) }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Build and push with latest | |
if: ${{ startsWith(github.ref, 'refs/tags/') && !( contains(github.ref, 'alpha') || contains(github.ref, 'beta') ) }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{ steps.meta.outputs.tags }} | |
${{ secrets.DOCKERHUB_USERNAME }}/rnacos:stable-alpine | |
labels: ${{ steps.meta.outputs.labels }} |