From 81a37d760ec6d4f3d806dc0ca31f6497269871bb Mon Sep 17 00:00:00 2001 From: "Wu, Ganhao" Date: Sun, 5 Dec 2021 01:45:30 +0800 Subject: [PATCH] Remove unused pipeline. --- .github/workflows/build.yml | 44 ------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index b2e02081..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -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 \ No newline at end of file