Skip to content

Commit

Permalink
Push docker (#18)
Browse files Browse the repository at this point in the history
* update docker action : push on ghcr
  • Loading branch information
alavenant authored Jul 15, 2024
1 parent ce02106 commit f487135
Showing 1 changed file with 48 additions and 6 deletions.
54 changes: 48 additions & 6 deletions .github/workflows/cicd_docker.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
name: cicd_docker

on:
# Run tests for non-draft pull request on main
push:
branches: [ "main" ]
tags: [ 'v*.*.*' ]
pull_request:
branches:
- main
branches: [ "main" ]

permissions:
packages: write

env:
IMAGE_NAME: ${{ github.repository }}
REGISTRY: ghcr.io
DOCKER_IMAGE_NAME: pdal_ign_plugin
TEST_TAG: pdal_ign_plugin:test

jobs:
build_docker_image_and_run_tests:
Expand All @@ -18,10 +25,45 @@ jobs:
- name: Checkout branch
uses: actions/checkout@v4

- name: Build docker image
run: docker build -t ${{ env.DOCKER_IMAGE_NAME }}:test .
# build the image
- name: Build and push Docker image
id: build
uses: docker/build-push-action@v5
with:
load: true
tags: ${{ env.TEST_TAG }}

# run the test on the docker build
- name: Run tests in docker image
run: docker run ${{ env.DOCKER_IMAGE_NAME }}:test python -m pytest
run: docker run ${{ env.TEST_TAG }} python -m pytest

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
if: github.event_name != 'pull_request'
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

# Build and push Docker image with Buildx (don't on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
if: ${{ github.event_name != 'pull_request' }}
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit f487135

Please sign in to comment.