diff --git a/.github/workflows/build-publish-dev.yml b/.github/workflows/build-publish-dev.yml new file mode 100644 index 0000000..d7cd807 --- /dev/null +++ b/.github/workflows/build-publish-dev.yml @@ -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 }}