Add proper rights to logging service-account and adjust logging forwa… #4
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: skodjob-ee | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
image: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Login to Quay.io | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USER }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./skodjob-ee/context | |
file: ./skodjob-ee/context/Containerfile | |
push: true | |
# TODO - Change org when we will create a new one | |
tags: quay.io/tealc/skodjob-ee:latest |