10000 feat(ui): 修改Dockerfile构建前端镜像 · airplayx/postcat@7e07e53 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(ui): 修改Dockerfile构建前端镜像 #2

feat(ui): 修改Dockerfile构建前端镜像

feat(ui): 修改Dockerfile构建前端镜像 #2

Workflow file for this run

name: Build Docker Image
on:
push:
branches: [ "main" ]
env:
APP_NAME: postcat
DOCKERHUB_REPO: airplayx/postcat
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16.14
cache: 'yarn'
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Build x
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
# DOCKERHUB_TOKEN: docker hub => Account Setting => Security
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Generate App Version
run: echo APP_VERSION=`git describe --tags --always` >> $GITHUB_ENV
- name: Build and push Docker image
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
# see https://github.com/docker-library/bashbrew/blob/v0.1.1/architecture/oci-platform.go
platforms: |
linux/amd64
build-args: |
APP_NAME=${{ env.APP_NAME }}
APP_VERSION=${{ env.APP_VERSION }}
tags: |
${{ env.DOCKERHUB_REPO }}:latest
# ${{ env.DOCKERHUB_REPO }}:${{ env.APP_VERSION }}
# - name: Deploy to Production
# uses: appleboy/ssh-action@master
# with:
# host: ${{ secrets.SSH_HOST }}
# username: ${{ secrets.SSH_USERNAME }}
# key: ${{ secrets.SSH_KEY }}
# script: cd /data && bash upgrade
0