Skip to content

Fix ChargingJailbird #10

Fix ChargingJailbird

Fix ChargingJailbird #10

Workflow file for this run

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/setup-dotnet@v1.7.2
- uses: actions/checkout@v2.3.4
- 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@v2
with:
name: ${{ matrix.proj_name }}-${{ matrix.target }}
path: EXILED/builds/${{ matrix.target }}