Publish Web App container image to GitHub #10
This file contains hidden or 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: Publish Web App container image to GitHub | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/Azure.AISearch.WebApp/**' | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| build: | |
| permissions: write-all | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| #- name: Build Docker Image | |
| # run: docker build --no-cache --build-arg app_version=1.0.$GITHUB_RUN_NUMBER --build-arg source_version=$GITHUB_SHA -t pia/azure-aisearch-webapp:latest -f ./src/Azure.AISearch.WebApp/Dockerfile ./src/Azure.AISearch.WebApp | |
| #- name: Push Docker Image to GitHub | |
| # run: | | |
| # echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
| # docker tag pia/azure-aisearch-webapp:latest ghcr.io/pia/azure-aisearch-webapp:latest | |
| # docker push ghcr.io/pia/azure-aisearch-webapp:latest | |
| - name: Log in to registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: https://index.docker.io/v1/ | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_TOKEN }} | |
| - name: Build and push agent-service container image to registry | |
| uses: docker/build-push-action@v3 | |
| with: | |
| context: ./src/Azure.AISearch.WebApp | |
| push: true | |
| tags: index.docker.io/${{ secrets.DOCKER_USERNAME }}/azure-aisearch-webapp:latest | |
| file: ./src/Azure.AISearch.WebApp/Dockerfile | |
| build-args: | | |
| app_version=1.0.${{ github.sha }} | |
| source_version=${{ github.sha }} |