Skip to content

Build and save

Build and save #5

name: Build and save
on:
workflow_dispatch:
jobs:
BuildSteps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Add Poetry to PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies in mapping_script
working-directory: ./mapping_script
run: poetry install
- name: Initiate submodules
run: git submodule update --init
- name: Run Generate pipeline
run: make pipeline-ci
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: result-artifact
path: results/results.tar.gz