auto building

This commit is contained in:
gfdgd_xi 2023-07-06 15:36:29 +08:00
parent d583c396b1
commit 0bbb560b48
1 changed files with 26 additions and 0 deletions

26
.github/workflows/auto-building.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Auto Building Wine Runner
run-name: ${{ github.actor }} Auto Building Wine Runner 🚀
on:
push:
workflow_dispatch:
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- name: Building DEB
run: |
# 配置环境
sudo apt update
sudo apt install git dpkg-dev qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools qt5-qmake -y
git clone https://github.com/gfdgd-xi/uengine-runner
cd uengine-runner
make build
mv com.gitee.uengine.runner.spark.deb ~
- name: upload result
uses: actions/upload-artifact@v1
with:
name: com.gitee.uengine.runner.spark.deb
path: /home/runner/com.gitee.uengine.runner.spark.deb