mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-03-15 06:28:27 +03:00
Merge branch 'main' of https://github.com/an-anime-team/an-anime-game-launcher-gtk
This commit is contained in:
commit
7f5981aab9
1 changed files with 32 additions and 0 deletions
32
.github/workflows/buildnup.yml
vendored
Normal file
32
.github/workflows/buildnup.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: Build & Upload Launcher
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_and_upload:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Install Deps
|
||||
run: sudo 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…
Add table
Reference in a new issue