4a340ef1ae
* Update release workflow * new workflow * fileversion experiment * Always use the run number in the file_version * only capture first 3 numbers in semver * build file version from tag * updated workflow-dispatch
97 lines
2.9 KiB
YAML
97 lines
2.9 KiB
YAML
name: "Release workflow"
|
|
on:
|
|
push:
|
|
branches: ["main", "installer-test/**"]
|
|
tags: ["v3.*.*"]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Zip
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
ZIP_NAME: "blender.zip"
|
|
SEMVER: null
|
|
FILE_VERSION: null
|
|
outputs:
|
|
semver: ${{ steps.set-version.outputs.semver }}
|
|
fileVersion: ${{ steps.set-version.outputs.fileVersion }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: 🐍 Install uv and set the python version
|
|
uses: astral-sh/setup-uv@v5
|
|
with:
|
|
python-version: "3.11"
|
|
enable-cache: true
|
|
cache-dependency-glob: "uv.lock"
|
|
|
|
- id: set-version
|
|
name: Set version to output
|
|
run: |
|
|
TAG=${{ github.ref_name }}
|
|
if [[ "${{ github.ref }}" != refs/tags/* ]]; then
|
|
TAG="v3.0.99.${{ github.run_number }}"
|
|
fi
|
|
SEMVER="${TAG#v}"
|
|
FILE_VERSION=$(echo "$TAG" | sed -E 's/^v([0-9]+\.[0-9]+\.[0-9]+).*/\1/')
|
|
FILE_VERSION="$FILE_VERSION.${{ github.run_number }}"
|
|
|
|
echo "semver=$SEMVER" >> "$GITHUB_OUTPUT"
|
|
echo "fileVersion=$FILE_VERSION" >> "$GITHUB_OUTPUT"
|
|
|
|
echo $SEMVER
|
|
echo $FILE_VERSION
|
|
|
|
- name: ✏ Patch Version
|
|
run: python patch_version.py ${{ steps.set-version.outputs.fileVersion }}
|
|
|
|
- name: 🔄 UV Sync
|
|
run: uv sync --all-extras --dev
|
|
|
|
- name: 📄 Export Package Dependencies
|
|
run: ./export_dependencies.sh
|
|
|
|
- name: 🗃 Zip Package
|
|
run: zip -r ${{env.ZIP_NAME}} bpy_speckle
|
|
|
|
- name: ⬆️ Upload artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: output-${{ steps.set-version.outputs.semver }}
|
|
path: ${{env.ZIP_NAME}}
|
|
if-no-files-found: error
|
|
retention-days: 1
|
|
compression-level: 0 # no compression
|
|
|
|
- name: 💾 Minimize uv cache
|
|
run: uv cache prune --ci
|
|
|
|
deploy-installers:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
env:
|
|
IS_PUBLIC_RELEASE: ${{ github.ref_type == 'tag' }}
|
|
steps:
|
|
- name: 🔫 Trigger Build Installer(s)
|
|
uses: the-actions-org/workflow-dispatch@v4.0.0
|
|
with:
|
|
workflow: Build Installers
|
|
repo: specklesystems/connector-installers
|
|
token: ${{ secrets.CONNECTORS_GH_TOKEN }}
|
|
inputs: '{
|
|
"run_id": "${{ github.run_id }}",
|
|
"semver": "${{ needs.build.outputs.semver }}",
|
|
"file_version": "${{ needs.build.outputs.fileVersion }}",
|
|
"repo": "${{ github.repository }}",
|
|
"is_public_release": ${{ env.IS_PUBLIC_RELEASE }}
|
|
}'
|
|
ref: main
|
|
wait-for-completion: true
|
|
wait-for-completion-interval: 10s
|
|
wait-for-completion-timeout: 10m
|
|
display-workflow-run-url: true
|
|
display-workflow-run-url-interval: 10s
|
|
|
|
- uses: geekyeggo/delete-artifact@v5
|
|
with:
|
|
name: output-*
|