diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 223270e..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: Build ChangeTimestamp - -on: - push: - branches: [main] - tags: - - "*" - pull_request: - branches: [main] - -jobs: - build: - runs-on: windows-2019 - - strategy: - matrix: - configuration: [Release] - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Use .NET Framework version 4.0 - uses: microsoft/setup-msbuild@v1.0.2 - with: - dotnet-version: '4.0' - - - name: Restore NuGet packages - run: nuget restore ChangeTimestamp\ChangeTimestamp.sln - - - name: Build solution - run: msbuild.exe ChangeTimestamp\ChangeTimestamp.sln /t:Build /p:Configuration=${{ matrix.configuration }} - - - name: Publish to release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - body: This is an automated release. - draft: false - prerelease: false - - - name: Upload Release Asset - uses: actions/upload-release-asset@v1 - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/ChangeTimestamp.exe - asset_name: ChangeTimestamp.exe - asset_content_type: application/octet-stream - - - name: Create NuGet package - run: nuget pack ChangeTimestamp\ChangeTimestamp.csproj -Properties Configuration=${{ matrix.configuration }} -OutputDirectory ./nuget - - - name: Publish NuGet package to GitHub Packages - uses: nuget/setup-nuget@v1 - with: - nuget-api-key: ${{ secrets.GITHUB_TOKEN }} - nuget-version: ${{ github.ref }} - run: nuget push ./nuget/*.nupkg -Source "github"