Remove unused pipeline.

This commit is contained in:
Wu, Ganhao 2021-12-05 01:45:30 +08:00
parent 0469e1d09a
commit 81a37d760e

View File

@ -1,44 +0,0 @@
name: Push Build
on:
push:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
clean: true
fetch-depth: 1
- name: Setup NuGet
uses: warrenbuckley/Setup-Nuget@v1
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
#with:
# arch: amd64
# toolset: 16.0
- name: CMake
working-directory: .
run: cmake .
- name: Build Release
working-directory: .
run: msbuild /m /p:Configuration=Release FMT.sln
- name: Build Debug
working-directory: .
run: msbuild /m /p:Configuration=Debug FMT.sln
- name: Nuget Pack
working-directory: .
run: nuget pack fmtlib.nuspec -version 6.1.2-rc1 -OutputFileNamesWithoutVersion -OutputDirectory dist
- name: Nuget Push
working-directory: .
run: nuget push dist\fmtlib.nupkg -ApiKey ${{secrets.nuget_api_key}} -Source https://api.nuget.org/v3/index.json