Some checks failed
build-linux-glfw-x64 / build (push) Failing after 6m37s
39 lines
846 B
YAML
39 lines
846 B
YAML
name: build-linux-glfw-x64
|
|
on:
|
|
push:
|
|
branches: [ master, main, main2 ]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
build-essential \
|
|
cmake \
|
|
xorg-dev \
|
|
libglu1-mesa-dev \
|
|
libglfw3-dev \
|
|
libx11-dev \
|
|
libxkbcommon-dev \
|
|
python3-pil
|
|
|
|
|
|
- name: Build Game
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
|
|
- name: Release
|
|
id: use-go-action
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: |-
|
|
README.md
|
|
api_key: '${{secrets.RELEASE_TOKEN}}' |