fix label names #39
Workflow file for this run
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: Update SMM docker image in ACR | |
on: | |
push: | |
branches: | |
- smm | |
env: | |
IMAGE_NAME: rumor-tracker | |
jobs: | |
build: | |
name: Build and push container image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Log into registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ secrets.ACR_ENDPOINT }} | |
username: ${{ secrets.ACR_USERNAME }} | |
password: ${{ secrets.ACR_PASSWORD }} | |
- name: Build & Push | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
tags: ${{ secrets.ACR_ENDPOINT }}/${{ env.IMAGE_NAME }}:latest | |
file: ./Dockerfile |