Skip to content

Build Linux Container Image and Push to ACR #6

Build Linux Container Image and Push to ACR

Build Linux Container Image and Push to ACR #6

Workflow file for this run

name: Build Linux Container Image and Push to ACR
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: HtmlToPDF_Conversion
steps:
- uses: actions/checkout@v2
- uses: azure/docker-login@v1
with:
login-server: githubhtmltopdf.azurecr.io
username: githubhtmltopdf
password: /laQaYkOWwKVEjiOYEfFRgMqlaInXZ196ZItwvyiDI+ACRCI2F7n
- run: |
docker build . -t githubhtmltopdf.azurecr.io/githubhtmltopdf:${{ github.sha }}
docker push githubhtmltopdf.azurecr.io/githubhtmltopdf:${{ github.sha }}