You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: Build using .NET Core
-
- on:
- push:
- branches: [ 3.0 ]
- paths-ignore:
- - 'docs/**'
-
- jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: Setup .NET Core
- uses: actions/setup-dotnet@v1
- with:
- dotnet-version: 5.0.202
-
- - name: Install dependencies
- run: dotnet restore
-
- - name: Build Discord.Net
- run: dotnet build --no-restore --configuration Release
-
- - name: Run Unit Tests
- run: dotnet test --no-build --configuration Release
-
- - name: Pack Discord.Net
- run: dotnet pack --no-build --configuration Release
-
- - name: Upload Artifacts
- uses: actions/upload-artifact@v1.0.0
- with:
- name: nupkgs
- path: ${{ github.workspace }}/artifacts/pkg/
|