forked from whybeyoung/Gradio_YOLOv5_Det
Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
|
47378ec609 | |
|
3227b39f4f |
|
@ -1,8 +1,11 @@
|
||||||
name: Gitea Actions Demo
|
name: Build And Deploy
|
||||||
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
|
run-name: ${{ github.actor }} is upgrade release 🚀
|
||||||
on: [push]
|
on: [push]
|
||||||
|
env:
|
||||||
|
REPOSITORY: ${{ github.repository }}
|
||||||
|
COMMIT_ID: ${{ github.sha }}
|
||||||
jobs:
|
jobs:
|
||||||
Explore-Gitea-Actions:
|
Build-Deploy-Actions:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
||||||
|
@ -10,30 +13,35 @@ 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."
|
-
|
||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
name: Setup Git LFS
|
||||||
|
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
|
||||||
with:
|
with:
|
||||||
registry: artifacts.iflytek.com
|
registry: artifacts.iflytek.com
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
-
|
-
|
||||||
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/yolov5:latest . --file ${{ github.workspace }}/Dockerfile
|
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 push artifacts.iflytek.com/docker-private/atp/whybeyoung/yolov5:latest
|
docker push 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/${{ steps.image-info.outputs.image_name }}:${{ steps.image-info.outputs.image_tag }}
|
||||||
# name: Build and push
|
|
||||||
# uses: docker/build-push-action@v4
|
|
||||||
# with:
|
|
||||||
# push: true
|
|
||||||
# tags: 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