-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add github actions to deploy docker on ghcr
- Loading branch information
1 parent
17cd6b5
commit 888d660
Showing
5 changed files
with
142 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.PAT_TOKEN }} | ||
token: ${{ secrets.GHCR_TOKEN }} | ||
#fetch-depth: 1 | ||
# See https://github.com/marketplace/actions/setup-micromamba | ||
- name: Install conda env | ||
uses: mamba-org/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: cicd_deploy | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
|
||
env: | ||
IMAGE_NAME: ${{ github.repository }} | ||
REGISTRY: ghcr.io | ||
DOCKER_IMAGE_NAME: lidro | ||
TEST_TAG: lidro:test | ||
|
||
jobs: | ||
deploy_docker: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.GHCR_TOKEN }} | ||
# build the image | ||
- name: Build Docker image for tests | ||
id: build | ||
uses: docker/build-push-action@v5 | ||
with: | ||
load: true | ||
tags: ${{ env.TEST_TAG }} | ||
|
||
- name: Run tests in docker | ||
run: > | ||
docker run | ||
--ipc=host | ||
${{ env.TEST_TAG }} | ||
python -m pytest -m docker -s --log-cli-level DEBUG | ||
- name: Set version number | ||
run: | | ||
echo "VERSION=v$(python -m lidro.version)" >> $GITHUB_ENV | ||
- name: Check tag and version number consistency | ||
if: ${{ github.event_name == 'tag' }} | ||
run: | | ||
if [[ ${{ github.ref_name }} == ${{ env.VERSION }} ]] | ||
then | ||
echo "OK: Tag name and VERSION.md (${{ env.VERSION }}) version number (${{ github.ref_name }}) match" | ||
else | ||
echo "NOK: Tag name and VERSION.md (${{ env.VERSION }}) version number (${{ github.ref_name }}) don't match" | ||
exit 1 | ||
fi | ||
# 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.GHCR_TOKEN }} | ||
|
||
# Extract metadata (tags, labels) for Docker | ||
# https://github.com/docker/metadata-action | ||
- name: Extract Docker metadata | ||
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 }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "data"] | ||
path = data | ||
url = git@github.com:IGNF/lidro-data.git | ||
url = https://github.com/IGNF/lidro-data.git |
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
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