Merge pull request #98 from swisstopo/update_coded_domain #30
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: Uploading assets to GitHub release | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yaml # use the callable build job to run build | |
release: | |
runs-on: ubuntu-latest | |
needs: [build] # require build to pass before deploy runs | |
steps: | |
- name: Set Package Version | |
shell: bash -l {0} | |
run: | | |
echo "version=$(<VERSION)" >> $GITHUB_ENV | |
echo "=== PKG_VERSION=$version ===" | |
echo "RELEASE=$(python -c "import yaml; print(yaml.safe_load(open('datamodel.yaml'))['model']['revision'])")" >> $GITHUB_ENV | |
echo "=== RELEASE=$RELEASE ===" | |
- name: Download assets from build | |
uses: actions/download-artifact@v4 | |
with: | |
name: geology-data-model-${{ env.RELEASE }} | |
- name: Release assets | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
with: | |
files: | | |
outputs/de/datamodel.pdf | |
outputs/fr/datamodel.pdf | |
outputs/de/datamodel.docx | |
outputs/fr/datamodel.docx | |
outputs/ER-GCOVER.svg | |
outputs/ER-GCOVER.pdf | |
exports/coded_domains.xlsx | |
exports/all_geolcode.xlsx | |
exports/geocover-schema-sde.json | |
outputs/geocover-schema-sde.png | |
outputs/geocover-schema-sde.svg | |