Compare commits

...

6 Commits
main ... main

Author SHA1 Message Date
xhli18 5aa970fa5a fix docker push 2023-03-29 15:37:52 +08:00
xhli18 361c93a956 fix docker push 2023-03-29 15:36:27 +08:00
xhli18 f7ad77c667 fix docker push 2023-03-29 15:14:16 +08:00
xhli18 2b2fa28440 fix build 2023-03-29 15:02:43 +08:00
xhli18 2dab515f83 fix 2023-03-29 14:55:53 +08:00
xhli18 896f49940f fix docker build and push action 2023-03-29 14:52:52 +08:00
1 changed files with 7 additions and 12 deletions
.gitea/workflows

View File

@ -1,8 +1,8 @@
name: Gitea Actions Demo
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
name: Build And Deploy
run-name: ${{ github.actor }} is upgrade release 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
Build-Deploy-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
@ -20,20 +20,15 @@ jobs:
uses: docker/login-action@v2
with:
registry: artifacts.iflytek.com
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build and push
run: |
docker version
docker buildx build -t artifacts.iflytek.com/docker-private/atp/whybeyoung/yolov5:latest . --file ${{ github.workspace }}/Dockerfile
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/yolov5:latest
# -
# name: Build and push
# uses: docker/build-push-action@v4
# with:
# push: true
# tags: artifacts.iflytek.com/docker-private/atp/whybeyoung/yolov5:latest
docker rmi artifacts.iflytek.com/docker-private/atp/whybeyoung/yolov5:latest
- run: echo "🍏 This job's status is ${{ job.status }}."