Update main.yml #99
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build on Github servers | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
working-directory: . | |
outputs: | |
semver: ${{ steps.gitversion.outputs.semver }} | |
sourcegrid: ${{ steps.packageBuildResults.outputs.sourcegrid }} | |
nupkg-SourceGrid: ${{ steps.createNupkg.outputs.nupkg-sourcegrid }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup msbuild | |
uses: microsoft/[email protected] | |
with: | |
vs-version: '12.0' | |
- name: Restore Packages | |
run: Nuget restore SourceGrid_2013.sln | |
- name: Build | |
run: msbuild -m -t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" /fl SourceGrid_2013.sln | |
- name: Archive Build Log | |
uses: actions/upload-artifact@v2 | |
if: ${{ success() || failure() }} | |
with: | |
name: Compile_Solution_log | |
path: | | |
*.log | |
- name: Create zip | |
id: packageBuildResults | |
run: | | |
$sourceFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "*" | |
$outFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "sourcegrid" | |
New-Item -ItemType Directory -Force -Path $outFolder | |
$fileName = "sourcegrid-1.0.0.zip" | |
Write-Host "Filename: '$fileName'" | |
Write-Host "sourceFolder: '$sourceFolder'" | |
Write-Host "Outfolder: '$outFolder'" | |
Write-Host "::set-output name=sourcegrid::$($fileName)" | |
$outPath = Join-Path $outFolder $fileName | |
Compress-Archive -DestinationPath $outPath -Path $sourceFolder -CompressionLevel Optimal | |
- name: Archive Build Output | |
uses: actions/upload-artifact@v2 | |
with: | |
name: sourcegrid | |
path: | | |
out/sourcegrid | |
- name: Create Nuget Packages | |
id: createNupkg | |
run: | | |
nuget pack SourceGrid.nuspec -Version 1.0.0 | |
Write-Host "::set-output name=nupkg-sourcegrid::TEST.1.0.0.nupkg" | |
- name: Archive NuGet Packages | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nuget-SourceGrid | |
path: | | |
*.nupkg | |
release: | |
if: github.ref == 'refs/heads/Github_runner' | |
runs-on: windows-latest | |
needs: build | |
steps: | |
- name: Download Build Output | |
uses: actions/download-artifact@v2 | |
with: | |
name: sourcegrid | |
- name: Download NuGet Package | |
uses: actions/download-artifact@v2 | |
with: | |
name: nuget-SourceGrid | |
- name: Debug | |
run: | | |
tree | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v1.0.0 | |
#tag_name: ${{ needs.build.outputs.semver }} | |
release_name: Release v1.0.0 | |
body: | | |
${{ github.event.head_commit.message }} | |
draft: true | |
prerelease: false | |
- name: Upload Zip | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./${{ needs.build.outputs.sourcegrid }} | |
asset_name: ${{ needs.build.outputs.sourcegrid }} | |
asset_content_type: application/zip | |
- name: Upload Nupkg | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./${{ needs.build.outputs.nupkg-SourceGrid }} | |
asset_name: ${{ needs.build.outputs.nupkg-SourceGrid }} | |
asset_content_type: application/zip | |