.github/workflows/build-release.yml #38
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
on: | |
release: | |
types: [created] | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
release-linux: | |
name: Release Linux Binary | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.20' | |
- name: Prepare archive directory | |
run: | | |
mkdir filediver | |
cp README.md LICENSE filediver/ | |
- name: Build Executable | |
run: GOOS=linux GOARCH=amd64 go build -o filediver/filediver ./cmd/filediver-cli | |
- name: Create archive | |
run: zip -r filediver-linux-amd64.zip filediver/ | |
- name: Upload archive | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: filediver-linux-amd64.zip | |
release-windows: | |
name: Release Windows Binary | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.20' | |
- name: Prepare archive directory | |
run: | | |
mkdir filediver | |
cp README.md LICENSE filediver/ | |
- name: Build Executable | |
run: GOOS=windows GOARCH=amd64 go build -o filediver/filediver.exe ./cmd/filediver-cli | |
- name: Download FFmpeg binary | |
run: | | |
wget https://github.com/GyanD/codexffmpeg/releases/download/6.1.1/ffmpeg-6.1.1-essentials_build.zip | |
unzip ffmpeg-6.1.1-essentials_build.zip ffmpeg-6.1.1-essentials_build/bin/ffmpeg.exe | |
mv ffmpeg-6.1.1-essentials_build/bin/ffmpeg.exe filediver/ | |
- name: Create archive | |
run: zip -r filediver-windows-amd64.zip filediver/ | |
- name: Upload archive | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: filediver-windows-amd64.zip | |
release-scripts-dist-windows: | |
name: Release Helper Scripts (Windows) | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install uv by astral.sh | |
run: powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" | |
- name: Build hd2_accurate_blender_importer executable | |
run: | | |
uv venv --python 3.11 | |
uv pip install pyinstaller bpy "numpy<2" | |
uv run pyinstaller ` | |
-D --distpath ./scripts_dist ` | |
./scripts/hd2_accurate_blender_importer.py ` | |
--add-data ./scripts/resources:resources ` | |
--collect-all bpy ` | |
--collect-submodules logging | |
- name: Create scripts_dist archive | |
run: | | |
7z a scripts_dist_windows.zip ./scripts_dist | |
- name: Upload archive | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: scripts_dist_windows.zip |