mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
Update main.yml
This commit is contained in:
parent
baedcb2d56
commit
7414e4ba6e
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
|
|
@ -1,6 +1,10 @@
|
|||
name: CI Build
|
||||
on: [push, pull_request]
|
||||
|
||||
env:
|
||||
NUGET_URL: https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
||||
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -8,7 +12,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Download latest NuGet
|
||||
run: wget https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
||||
run: wget $NUGET_URL
|
||||
|
||||
- name: Install Dependencies
|
||||
run: mono nuget.exe restore
|
||||
|
|
@ -22,7 +26,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Download latest NuGet
|
||||
run: curl -o nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
||||
run: curl -o nuget.exe $NUGET_URL
|
||||
|
||||
- name: Install Dependencies
|
||||
run: mono nuget.exe restore
|
||||
|
|
|
|||
Loading…
Reference in a new issue