更新依赖包 #4
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
# This is a basic workflow to help you get started with Actions | |
name: build docker image | |
# Controls when the action will run. | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
buildx: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=today::$(date +'%Y-%m-%d_%H-%M')" | |
- name: Node Setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- name: Pnpm Setup | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Available platforms | |
run: echo ${{ steps.buildx.outputs.platforms }} | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: build front src | |
run: | | |
git clone https://github.com/jinzhongjia/newMovie.git --depth=1 src/front | |
cd src/front;pnpm install;pnpm build | |
cd .. | |
cd .. | |
cp -r src/front/dist/ dist/front | |
git clone https://github.com/jinzhongjia/newMovieAdmin.git --depth=1 src/admin | |
cd src/admin;pnpm install;pnpm build | |
cd .. | |
cd .. | |
cp -r src/admin/dist/ dist/admin | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
# 所需要的体系结构,可以在 Available platforms 步骤中获取所有的可用架构 | |
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm64/v8 | |
# 镜像推送时间 | |
push: ${{ github.event_name != 'pull_request' }} | |
# 给清单打上多个标签 | |
tags: | | |
yunyizhiying/movie:${{ steps.date.outputs.today }} |