Compare commits
6 Commits
Author | SHA1 | Date |
---|---|---|
|
5aa970fa5a | |
|
361c93a956 | |
|
f7ad77c667 | |
|
2b2fa28440 | |
|
2dab515f83 | |
|
896f49940f |
|
@ -1,9 +1,6 @@
|
||||||
name: Build And Deploy
|
name: Build And Deploy
|
||||||
run-name: ${{ github.actor }} is upgrade release 🚀
|
run-name: ${{ github.actor }} is upgrade release 🚀
|
||||||
on: [push]
|
on: [push]
|
||||||
env:
|
|
||||||
REPOSITORY: ${{ github.repository }}
|
|
||||||
COMMIT_ID: ${{ github.sha }}
|
|
||||||
jobs:
|
jobs:
|
||||||
Build-Deploy-Actions:
|
Build-Deploy-Actions:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -13,21 +10,11 @@ jobs:
|
||||||
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
-
|
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
|
||||||
name: Setup Git LFS
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||||
run: |
|
|
||||||
git lfs install
|
|
||||||
git lfs fetch
|
|
||||||
git lfs checkout
|
|
||||||
- name: List files in the repository
|
- name: List files in the repository
|
||||||
run: |
|
run: |
|
||||||
ls ${{ github.workspace }}
|
ls ${{ github.workspace }}
|
||||||
-
|
|
||||||
name: Docker Image Info
|
|
||||||
id: image-info
|
|
||||||
run: |
|
|
||||||
echo "::set-output name=image_name::$(echo $REPOSITORY | awk -F/ '{print $NF}' | tr '[:upper:]' '[:lower:]')"
|
|
||||||
echo "::set-output name=image_tag::${COMMIT_ID:0:10}"
|
|
||||||
-
|
-
|
||||||
name: Login to Docker Hub
|
name: Login to Docker Hub
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
|
@ -41,7 +28,7 @@ jobs:
|
||||||
name: Build and push
|
name: Build and push
|
||||||
run: |
|
run: |
|
||||||
docker version
|
docker version
|
||||||
docker buildx build -t artifacts.iflytek.com/docker-private/atp/whybeyoung/${{ steps.image-info.outputs.image_name }}:${{ steps.image-info.outputs.image_tag }} . --file ${{ github.workspace }}/Dockerfile --load
|
docker buildx build -t artifacts.iflytek.com/docker-private/atp/whybeyoung/yolov5:latest . --file ${{ github.workspace }}/Dockerfile --load
|
||||||
docker push artifacts.iflytek.com/docker-private/atp/whybeyoung/${{ steps.image-info.outputs.image_name }}:${{ steps.image-info.outputs.image_tag }}
|
docker push artifacts.iflytek.com/docker-private/atp/whybeyoung/yolov5:latest
|
||||||
docker rmi artifacts.iflytek.com/docker-private/atp/whybeyoung/${{ steps.image-info.outputs.image_name }}:${{ steps.image-info.outputs.image_tag }}
|
docker rmi artifacts.iflytek.com/docker-private/atp/whybeyoung/yolov5:latest
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||||
|
|
Loading…
Reference in New Issue