fix naming #98
This file contains hidden or 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: 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 |