mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-18 07:51:47 +03:00
Add experimental build and upload
This commit is contained in:
parent
5d26f84659
commit
191d3e6dd0
1 changed files with 29 additions and 0 deletions
29
.github/workflows/buildnup.yml
vendored
29
.github/workflows/buildnup.yml
vendored
|
@ -32,3 +32,32 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: Launcher
|
name: Launcher
|
||||||
path: target/release/anime-game-launcher
|
path: target/release/anime-game-launcher
|
||||||
|
|
||||||
|
build_and_upload_exp:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ jobs.build_and_upload.result == "failure" }}
|
||||||
|
|
||||||
|
container:
|
||||||
|
image: ubuntu:rolling
|
||||||
|
env:
|
||||||
|
DEBIAN_FRONTEND: noninteractive
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Install Deps
|
||||||
|
run: |
|
||||||
|
apt update
|
||||||
|
apt install -y libgtk-4-1 libgtk-4-dev libadwaita-1-0 libadwaita-1-dev
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --release --verbose
|
||||||
|
|
||||||
|
- name: Upload a Build Artifact
|
||||||
|
uses: actions/upload-artifact@v3.1.0
|
||||||
|
with:
|
||||||
|
name: Launcher
|
||||||
|
path: target/release/anime-game-launcher
|
||||||
|
|
Loading…
Reference in a new issue