Skip to content

Maybe fix ubuntu

Maybe fix ubuntu #2

Workflow file for this run

name: Build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dependencies
run: make install
- name: Build game
run: make
- name: Upload build/
uses: actions/upload-artifact@v3
with:
name: build
path: build/
retention-days: 30