Merge pull request #7 from IGNF/fix_CI #5
Workflow file for this run
This file contains hidden or 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: cicd_deploy | |
| on: | |
| # Also run when the pull request merges (which generates a push) | |
| # So that we can tag the docker image appropriately. | |
| push: | |
| tags: [ 'v*.*.*' ] | |
| env: | |
| IMAGE_NAME: ${{ github.repository }} | |
| REGISTRY: ghcr.io | |
| TEST_TAG: ${{ github.repository }}:test | |
| jobs: | |
| deploy_docker: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| - name: Build the Docker image | |
| id: build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| load: true | |
| tags: ${{ env.TEST_TAG }} | |
| # run the test on the docker image | |
| - name: Run tests in docker image | |
| run: > | |
| docker run | |
| ${{ env.TEST_TAG }} | |
| python -m pytest -s | |
| --log-cli-level=DEBUG | |
| --log-format="%(asctime)s %(levelname)s %(message)s" | |
| --log-date-format="%Y-%m-%d %H:%M:%S" | |
| -m "not functional_test" | |
| # 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@v3 | |
| 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 a Docker image with Buildx (don't on PR) | |
| # https://github.com/docker/build-push-action | |
| - name: Build and push Docker image | |
| if: github.event_name != 'pull_request' | |
| id: build-and-push | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} |