Skip to content

Commit

Permalink
Merge pull request #793 from hotosm/build/ci-img-workflow
Browse files Browse the repository at this point in the history
Build CI image in workflow
  • Loading branch information
robsavoye authored Sep 1, 2023
2 parents d009262 + 5b2a35e commit 870d49f
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 12 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/ci_img_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Build CI Img

on:
# Push includes PR merge
push:
branches:
- main
- staging
- development
paths:
# Workflow is triggered only if deps change
- "src/backend/pyproject.toml"
- "src/backend/Dockerfile"
# Allow manual trigger
workflow_dispatch:

env:
REGISTRY: ghcr.io
GIT_BRANCH: ${{ github.ref_name }}

jobs:
build-and-push-images:
runs-on: ubuntu-latest
environment:
name: ${{ github.ref_name }}
permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract api version
id: extract_api_version
run: |
cd src/backend
echo "API_VERSION=$(python -c 'from app.__version__ import __version__; print(__version__)')" >> $GITHUB_ENV
- name: Build image
uses: docker/build-push-action@v4
with:
context: src/backend
target: ci
push: true
tags: |
"ghcr.io/hotosm/fmtm/backend:${{ env.API_VERSION }}-ci-${{ github.ref_name }}"
"ghcr.io/hotosm/fmtm/backend:ci-${{ github.ref_name }}"
build-args: |
API_VERSION=${{ env.API_VERSION }}
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: ${{ github.ref_name }}

container:
image: ghcr.io/hotosm/fmtm/backend:ci
image: ghcr.io/hotosm/fmtm/backend:ci-${{ github.ref_name }}
env:
ODK_CENTRAL_URL: https://central-proxy
ODK_CENTRAL_USER: [email protected]
Expand Down
11 changes: 0 additions & 11 deletions build_ci_imgs.sh

This file was deleted.

0 comments on commit 870d49f

Please sign in to comment.