VITAlbum/.github/workflows/build.yml
Joel16 d16d08e4b2
Some checks are pending
C/C++ CI / build (push) Waiting to run
ci: Use GitHub Actions to build and deploy artifacts
2024-10-18 17:00:56 -04:00

34 lines
567 B
YAML

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
container: vitasdk/vitasdk:latest
steps:
- name: Update git
run: |
apk update
apk add git
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: |
mkdir build && cd build && cmake ..
make
- uses: actions/upload-artifact@v4
with:
name: VITAlbum.vpk
path: build/VITAlbum.vpk