优化大量组件,重写参数构建器,更新版本号 #83
This file contains 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: CI-Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "**" ] | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
compile-flags: "-c Release" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
run: dotnet test MinecraftLaunch/MinecraftLaunch.csproj | |
test_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
run: dotnet build MinecraftLaunch/MinecraftLaunch.csproj | |
build: | |
runs-on: ubuntu-latest | |
needs: [test, test_build] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: dotnet build MinecraftLaunch/MinecraftLaunch.csproj ${{ env.compile-flags }} | |
- name: Publish | |
uses: brandedoutcast/[email protected] | |
with: | |
PROJECT_FILE_PATH: MinecraftLaunch/MinecraftLaunch.csproj | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} |