fix: Fix UsedItem being called twice (#715) #3347
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: Exiled Programs CI | |
| on: [push, pull_request] | |
| defaults: | |
| run: | |
| working-directory: ./EXILED | |
| jobs: | |
| build: | |
| # Prevent double running for push & pull_request events from the main repo | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| name: .Net Core ${{ matrix.framework }} on ${{ matrix.os }} for ${{ matrix.proj_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| proj_name: [Exiled.Installer] | |
| include: | |
| - os: ubuntu-latest | |
| target: linux-x64 | |
| - os: windows-latest | |
| target: win-x64 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: actions/[email protected] | |
| - name: Install dependencies for ${{ matrix.proj_name }}@${{ matrix.target }} | |
| run: dotnet restore ${{ matrix.proj_name }} -r ${{ matrix.target }} | |
| - name: Build ${{ matrix.proj_name }}@${{ matrix.target }} | |
| run: dotnet publish ${{ matrix.proj_name }} -r ${{ matrix.target }} -c release -o builds/${{ matrix.target }} --self-contained true | |
| - name: Upload ${{ matrix.proj_name }}@${{ matrix.target }} build | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.proj_name }}-${{ matrix.target }} | |
| path: EXILED/builds/${{ matrix.target }} |