修改Docker

This commit is contained in:
xpnas 2021-03-26 23:22:50 +08:00
parent f7f834340e
commit 7d98418b9c
2 changed files with 3 additions and 63 deletions

View File

@ -3,6 +3,8 @@ name: docker
on:
push:
branches: [ master ]
tags:
- v.*
pull_request:
branches: [ master ]
@ -57,7 +59,7 @@ jobs:
file: ./Inotify/Dockerfile
platforms: linux/amd64
push: true
tags: ${{ secrets.DOCKERHUB_TAG }}:master
tags: ${{ secrets.DOCKERHUB_TAG }}:${{ github.ref }}
- name: 'Report Suecss'
run: curl ${{ secrets.INOTIFY }}/Inotify/dockerBuildComplated!

View File

@ -1,62 +0,0 @@
name: dockerTags
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Check out the repo
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Cache node modules NPM
uses: actions/cache@v2
env:
cache-name: cache-node-modules-NPM
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./Inotify.Vue/package.json') }}
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./Inotify.Vue/package.json') }}
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ./Inotify.Vue/node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./Inotify.Vue/package.json') }}
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./Inotify.Vue/package.json') }}
- name: InstallNode and BuildVue
run: |
cd ./Inotify.Vue
npm install
npm run build:prod
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Docker Build & Push to Docker Hub For tag
uses: docker/build-push-action@v2
with:
context: .
file: ./Inotify/Dockerfile
platforms: linux/amd64
push: true
tags: ${{ secrets.DOCKERHUB_TAG }}:${{ github.ref }}
- name: 'Report Suecss'
run: curl ${{ secrets.INOTIFY }}/Inotify/dockerBuildComplated!