mirror of
https://github.com/Cubitect/cubiomes-viewer.git
synced 2025-01-08 11:57:50 +08:00
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
name: Windows Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'trunk'
|
|
tags:
|
|
- 'v*'
|
|
|
|
defaults:
|
|
run:
|
|
shell: cmd
|
|
|
|
env:
|
|
PROG: cubiomes-viewer
|
|
SOURCE_DIR: ${{github.workspace}}
|
|
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v3
|
|
with:
|
|
aqtversion: '==3.1.*'
|
|
version: '5.15.2'
|
|
host: 'windows'
|
|
target: 'desktop'
|
|
arch: 'win64_mingw81'
|
|
archives: 'x86_64 qtbase qttools'
|
|
cache: true
|
|
setup-python: false
|
|
|
|
- name: Build
|
|
working-directory: ${{env.SOURCE_DIR}}
|
|
run: |
|
|
qmake CONFIG+=release ${{env.SOURCE_DIR}}
|
|
mingw32-make
|
|
|
|
- name: Deploy
|
|
working-directory: ${{env.SOURCE_DIR}}
|
|
run: |
|
|
mkdir ${{env.PROG}}
|
|
copy ${{env.SOURCE_DIR}}\release\${{env.PROG}}.exe ${{env.PROG}}
|
|
windeployqt --dir ${{env.PROG}} ${{env.SOURCE_DIR}}\release\${{env.PROG}}.exe --compiler-runtime --no-translations --no-system-d3d-compiler --no-opengl-sw --no-angle
|
|
${{env.SOURCE_DIR}}\${{env.PROG}}\${{env.PROG}}.exe --version
|
|
|
|
- name: Save build artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{env.PROG}}-win
|
|
path: ${{env.SOURCE_DIR}}\${{env.PROG}}
|
|
|
|
|