gfdgd-xi Auto Building Wine Runner 🚀 #27
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
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 | |