Docker Image CI #114
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 Image CI | |
on: | |
workflow_run: | |
workflows: ["Execute tests in docker-compose"] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- name: LFS checkout | |
run: git lfs checkout | |
- name: Build the Docker image | |
# The metadata inside the image will include the final git commit SHA and the time of the final commit. | |
# The tag applied to the image will be like spyderisk/system-modeller:<branch-name>-<timestamp> | |
# e.g. spyderisk/system-modeller:dev-20230405T1012 | |
# Where the timestamp is the time of the final commit in the build. | |
run: | | |
TIMESTAMP=$(git show -s --format=%cI ${GITHUB_SHA}) | |
SHORT_TIME=$(echo ${TIMESTAMP} | sed 's/[-:]//g') | |
REF_END=$(echo ${GITHUB_REF} | sed 's/.*\///') | |
TAG=spyderisk/system-modeller:${REF_END}-${SHORT_TIME:0:13} | |
echo "TAG=${TAG}" >> ${GITHUB_ENV} | |
docker build --tag ${TAG} --build-arg CI_COMMIT_SHA=${GITHUB_SHA} --build-arg CI_COMMIT_TIMESTAMP=${TIMESTAMP} --file Dockerfile --target ssm-production "." | |
- name: Push Docker image to registry | |
run: | | |
docker login -u ${{ vars.DOCKER_HUB_USERNAME }} -p ${{ secrets.DOCKER_HUB_RW_SECRET }} | |
docker push ${TAG} |