Containerise and Upload to DAFNI #27
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: Containerise and Upload to DAFNI | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
get_release_version: | |
name: Get Release Version | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.get_release.outputs.version }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Get release version | |
id: get_release | |
run: | | |
export VERSION=$(curl -sSL https://api.github.com/repos/CITCOM-project/CausalTestingFramework/releases/latest | jq -r '.tag_name' | head -c 2) | |
echo "::set-output name=version::$VERSION" | |
build_and_upload: | |
name: Docker Build | |
needs: get_release_version | |
if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} | |
runs-on: ubuntu-latest | |
env: | |
DAFNI_PARENT_ID: ${{ secrets.DAFNI_PARENT_ID }} | |
DAFNI_USERNAME: ${{ secrets.DAFNI_USERNAME }} | |
DAFNI_PASSWORD: ${{ secrets.DAFNI_PASSWORD }} | |
VERSION: ${{ needs.get_release_version.outputs.version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Build the container | |
run: | | |
docker build -t ctf:${{ env.VERSION }} -f ./dafni/Dockerfile . | |
docker save ctf:${{ env.VERSION }} | gzip > ctf-dafni-${{ env.VERSION }}.tar.gz | |
- name: Install DAFNI-CLI and log in | |
run: | | |
python -m pip install dafni-cli | |
dafni login | |
- name: Upload to DAFNI | |
run: | | |
dafni upload model ./dafni/model_definition.yaml ctf-dafni-${{ env.VERSION }}.tar.gz --version-message "Causal Testing Framework ${{ env.VERSION }}. Uploaded via Github Actions." --parent-id ${{ env.DAFNI_PARENT_ID }} -y | |
dafni logout |