Merge pull request #212 from CogStack/cdb-verification-fix #50
Workflow file for this run
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: release-build | |
on: | |
push: | |
tags: [ 'v*.*.*' ] | |
jobs: | |
# run tests / lint / etc. before building container image? | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout master | |
uses: actions/checkout@v4 | |
with: | |
ref: 'master' | |
- name: Release Tag | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Build | |
env: | |
IMAGE_TAG: ${{ env.RELEASE_VERSION }} | |
run: | | |
docker build -t cogstacksystems/medcat-trainer:$IMAGE_TAG -t cogstacksystems/medcat-trainer:latest webapp/. | |
- name: Run Django Tests | |
env: | |
IMAGE_TAG: ${{ env.RELEASE_VERSION }} | |
run: | | |
# run tests | |
docker run --rm cogstacksystems/medcat-trainer:$IMAGE_TAG python manage.py test | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Push to DockerHub | |
env: | |
IMAGE_TAG: ${{ env.RELEASE_VERSION }} | |
run: | | |
docker push cogstacksystems/medcat-trainer:$IMAGE_TAG | |
docker push cogstacksystems/medcat-trainer:latest |