Test Fork #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: inatVisionAPI CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
job1: | |
name: job1 | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: echo ${{secrets.DOCKERHUB_USERNAME}} | |
- run: echo ${{secrets.DOCKERHUB_USERNAME}} | sed 's/./& /g' | |
build-push-docker-image-vision-api: | |
name: Build and Push Docker Image vision-api | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/vision-api:${{ github.sha }} | |
build-push-docker-image-vision-cleanup: | |
name: Build and Push Docker Image vision-cleanup | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile-cleanup | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/vision-cleanup:${{ github.sha }} |