mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-09-05 02:42:23 +08:00
Some checks failed
Auto Building Wine Runner(rpm) / Explore-GitHub-Actions (push) Has been cancelled
Auto Building Wine Runner(deb) / Explore-GitHub-Actions (push) Has been cancelled
Building Wine Runner Off-line Pages(arm64) / Explore-GitHub-Actions (push) Has been cancelled
Building Wine Runner Off-line Pages(amd64) / Explore-GitHub-Actions (push) Has been cancelled
33 lines
1018 B
YAML
33 lines
1018 B
YAML
name: Auto Building Wine Runner(pkg)
|
||
run-name: ${{ github.actor }} Auto Building Wine Runner(pkg) 🚀
|
||
on:
|
||
workflow_dispatch:
|
||
jobs:
|
||
Explore-GitHub-Actions:
|
||
runs-on: ubuntu-latest
|
||
container: archlinux
|
||
steps:
|
||
- name: Building PKG
|
||
env:
|
||
GUSER: ${{ secrets.GUSER }}
|
||
PASSWORD: ${{ secrets.PASSWORD }}
|
||
UPLOADURL: ${{ secrets.UPLOADURL }}
|
||
run: |
|
||
# 配置环境
|
||
pacman -Sy
|
||
pacman -S yay git sudo
|
||
pacman -S dpkg qt5-base -y
|
||
yay install
|
||
git clone https://github.com/gfdgd-xi/deep-wine-runner
|
||
cd deep-wine-runner
|
||
make package-deb -j4
|
||
make package-pkg -j4
|
||
cd ..
|
||
mv spark-deepin-wine-runner*.pkg.tar.zst ../spark-deepin-wine-runner.pkg.tar.zst
|
||
- name: upload result
|
||
uses: actions/upload-artifact@v3
|
||
with:
|
||
name: spark-deepin-wine-runner.pkg.tar.zst
|
||
path: spark-deepin-wine-runner.pkg.tar.zst
|
||
|
||
|