Skip to content

Bump body-parser and express (#158) #62

Bump body-parser and express (#158)

Bump body-parser and express (#158) #62

Workflow file for this run

name: Deploy to ACR
on:
workflow_dispatch:
push:
branches: ['main']
paths-ignore:
- '.github/workflows/**'
- 'README.md'
- 'terraform/**'
env:
IMAGE_NAME: honeybadger
jobs:
build:
name: Build container image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log into registry
uses: docker/login-action@v3
with:
registry: ${{ vars.ACR_ENDPOINT }}
username: ${{ vars.ACR_USERNAME }}
password: ${{ secrets.ACR_PASSWORD }}
- name: Build & Push
uses: docker/build-push-action@v5
with:
push: true
build-args: |
version=latest
tags: ${{ vars.ACR_ENDPOINT }}/${{ env.IMAGE_NAME }}:latest