Compare commits

...

2 Commits
main ... main

Author SHA1 Message Date
xhli18 47378ec609 fix git lfs
Build-Deploy-Actions Details
2023-03-29 20:42:07 +08:00
xhli18 3227b39f4f fix docker push
Build-Deploy-Actions Details
2023-03-29 16:18:07 +08:00
1 changed files with 23 additions and 15 deletions

View File

@ -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 }}."