Skip to content

Fix configure state triggers again #87

Fix configure state triggers again

Fix configure state triggers again #87

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download Everest lib-stripped release asset from GitHub
uses: duhow/download-github-release-assets@v1
with:
repository: EverestAPI/Everest
release-id: latest
files: lib-stripped.zip
- name: Unzip lib-stripped.zip
run: unzip lib-stripped.zip
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
- name: Restore with .NET Core
run: dotnet restore
- name: Build with .NET Core
run: dotnet build "/p:Configuration=Debug"
env:
CELESTEGAMEPATH: ${{ github.workspace }}/lib-stripped
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: main
path: src/bin/Debug/net7.0