Skip to content

Bump actions/checkout #3

Bump actions/checkout

Bump actions/checkout #3

Workflow file for this run

name: Build
on:
push:
pull_request:
types: [opened, synchronize, reopened]
release:
types: [published]
jobs:
build:
name: Build against fooyin
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- name: Dependencies
run: |
pacman -Syu --noconfirm --needed \
base-devel \
cmake \
git \
ninja \
fooyin
- name: Checkout
uses: actions/checkout@v6
with:
submodules: recursive
- name: Configure
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build
- name: Upload artifact
uses: actions/upload-artifact@v6
with:
name: fooyin-plugin-libvgm
path: build/fyplugin_vgminput.so
if-no-files-found: error