Fix(dui3): missing DUI3config.db file case #35
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Build | |
on: | |
pull_request: | |
workflow_call: | |
outputs: | |
semver: | |
description: "The computed version number for this run" | |
value: ${{ jobs.build.outputs.semver }} | |
file_version: | |
description: "The assembly info version for this run" | |
value: ${{ jobs.build.outputs.file_version }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
semver: ${{ steps.set-version.outputs.semver }} | |
file_version: ${{ steps.set-info-version.outputs.file-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/[email protected] | |
- name: Determine Version | |
id: gitversion | |
uses: gittools/actions/gitversion/[email protected] | |
- name: Set connector version | |
run: | | |
python patch_version.py ${{steps.gitversion.outputs.semVer}} | |
- uses: montudor/action-zip@v1 | |
with: | |
args: zip -q -r sketchup.zip vendor speckle_connector_3/ speckle_connector_3.rb | |
- name: ⬆️ Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output-${{steps.gitversion.outputs.semVer}} | |
path: sketchup.zip | |
compression-level: 0 # no compression | |
- id: set-version | |
name: Set version to output | |
run: echo "semver=${{steps.gitversion.outputs.semVer}}" >> "$GITHUB_OUTPUT" # version will be retrieved from tag? | |
- id: set-info-version | |
name: Set version to output | |
run: echo "file-version=${{steps.gitversion.outputs.AssemblySemVer}}" >> "$GITHUB_OUTPUT" # version will be retrieved from tag? |