Merge pull request #156 from philips-labs/dependabot/docker/docker/al… #250
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: docker | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Login to HSDP Docker registry | |
uses: docker/login-action@v3 | |
with: | |
registry: docker.na1.hsdp.io | |
username: ${{ secrets.HSDP_DOCKER_USERNAME }} | |
password: ${{ secrets.HSDP_DOCKER_PASSWORD }} | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Log in to the Github Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# We must fetch at least the immediate parents so that if this is | |
# a pull request then we can checkout the head. | |
fetch-depth: 2 | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/${{ github.repository }} | |
- | |
name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./docker | |
file: ./docker/Dockerfile | |
platforms: linux/amd64 | |
push: true | |
provenance: false | |
tags: philipslabs/cf-thanos:latest,docker.na1.hsdp.io/philipslabs/cf-thanos:latest,${{ steps.meta.outputs.tags }} | |
- | |
name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |