Skip to content

Update submodules

Update submodules #4

Workflow file for this run

name: CI
on:
push:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
container: archlinux
steps:
- name: Install build dependencies
run: |
pacman -Syu --noconfirm
pacman -S --needed --noconfirm base-devel ghc git zip haskell-shake libime
- name: Fetch source code
uses: actions/checkout@v3
with:
submodules: true
- name: Build
run: |
export LANG=C.UTF-8
mkdir build
cd build
runghc ../Main.hs -j everything
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
files: |
build/*.zip