Skip to content

Commit

Permalink
mob next
Browse files Browse the repository at this point in the history
lastFile:.github/workflows/accessibility-docker-build.yml
  • Loading branch information
amorrow-flexion committed Nov 9, 2023
1 parent 17e123e commit 5a5e682
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/accessibility-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,15 @@ jobs:
login-server: ${{ secrets.AZ_ACR_LOGIN_SERVER }}
username: ${{ secrets.AZ_ACR_USERNAME }}
password: ${{ secrets.AZ_ACR_PASSWORD }}
- name: Build & Publish
run: |
pushd ./ops/docker/axe
docker build -t ${{ secrets.AZ_ACR_LOGIN_SERVER }}/axe:${{ github.sha }}
docker push ${{ secrets.AZ_ACR_LOGIN_SERVER }}/axe:${{ github.sha }}
# - name: Build & Publish
# run: |
# pushd ./ops/docker/axe
# docker build -t ${{ secrets.AZ_ACR_LOGIN_SERVER }}/axe:${{ github.sha }}
# docker push ${{ secrets.AZ_ACR_LOGIN_SERVER }}/axe:${{ github.sha }}
- name: Build & Push
uses: docker/build-push-action@v2
with:
push: true
build-args: |
version=${{ github.sha }}
tags: ${{ secrets.AZ_ACR_LOGIN_SERVER }}/axe:${{ github.sha }}

0 comments on commit 5a5e682

Please sign in to comment.