Merge branch 'main' into douglasduteil/feat-connect-to-mongo-AgentCon… #9
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
- alpha | |
# TODO(douglasduteil): remove me after the ops validation | |
- douglasduteil/feat-connect-to-mongo-AgentConnect-database | |
workflow_dispatch: | |
permissions: | |
packages: write | |
jobs: | |
build: | |
name: Publich Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ github.token }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/betagouv/espace-partenaire | |
tags: | | |
type=sha,format=long,prefix= | |
type=ref,event=branch | |
type=ref,event=tag | |
flavor: | | |
latest=${{ github.ref == 'refs/heads/main' }} | |
- uses: actions/checkout@v4 | |
- name: Build image | |
uses: docker/build-push-action@v3 | |
with: | |
build-args: | | |
SOURCE_COMMIT=${{ github.sha }} | |
cache-from: type=registry,ref=ghcr.io/${{ github.repository }}:buildcache | |
cache-to: type=registry,ref=ghcr.io/${{ github.repository }}:buildcache,mode=max | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} |