umu_run: fix flatpak 32-bit path missing in STEAM_RUNTIME_LIBRARY_PATH #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: make | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install meson shellcheck scdoc python3-hatchling python3-build python3-installer | |
- name: Initialize submodules | |
run: | | |
git submodule update --init --recursive | |
- name: Lint using Shellcheck | |
run: | | |
shellcheck configure.sh | |
- name: Make system package | |
run: | | |
./configure.sh --prefix=/usr | |
sudo make PREFIX=/usr install | |
- name: Make release | |
run: | | |
make release |