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