Skip to content

Commit

Permalink
Create build-publish-dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
acn-dgopa authored Aug 14, 2023
1 parent e2f787a commit 3ac45e5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build-publish-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build Push to ghcr
on:
push:
branches: [main]
env:
REGISTRY: ghcr.io
IMAGE_NAME: altinn/altinn-auth-audit-log
CONTAINER_APP_CONTAINER_NAME: auditlog
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}

0 comments on commit 3ac45e5

Please sign in to comment.