updating the doc on release info #293
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: | |
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 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '3.1.x' | |
- name: Setup Version | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: '5.3.6' | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: TRUE | |
- name: Determine Version | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
useConfigFile: true | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: TRUE | |
- name: get SemVer | |
id: gitversion | |
run: | | |
echo "SemVer: v$($env:GitVersion_SemVer)" | |
Write-Host "::set-output name=semver::$($env:GitVersion_MajorMinorPatch)" | |
$fileName = "dummy-v$($env:GitVersion_SemVer)" | |
echo "SemVerMMP: v$($env:GitVersion_MajorMinorPatch)" | |
Write-Host "Filename: '$fileName'" | |
- name: Setup msbuild | |
uses: microsoft/[email protected] | |
with: | |
vs-version: '12.0' | |
- name: Restore Packages | |
run: Nuget restore SourceGrid.sln | |
- name: Build | |
run: msbuild -m -t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" /fl SourceGrid.sln | |
- name: Archive Build Log | |
uses: actions/upload-artifact@v3 | |
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 "net*" | |
$outFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "sourcegrid" | |
New-Item -ItemType Directory -Force -Path $outFolder | |
$fileName = "sourcegrid-v$($env:GitVersion_MajorMinorPatch).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@v3 | |
with: | |
name: sourcegrid | |
path: | | |
Out/win32 | |
- name: Create Nuget Packages | |
id: createNupkg | |
#removed version parameter from nuget pack command since the version is statically defined in the nuspec file. This release is based on the source code from Clearcase 4.40 EA16 which is enhanced for a bug fix. | |
#Hence the next version of the release is set as 4.40 EA17 | |
run: | | |
nuget pack .nuget\SourceGrid.nuspec | |
Write-Host "::set-output name=nupkg-sourcegrid::siemens.sourcegrid.$($env:GitVersion_MajorMinorPatch).nupkg" | |
- name: Archive NuGet Packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nuget-sourceGrid | |
path: | | |
*.nupkg | |
release: | |
if: github.ref == 'refs/heads/master' | |
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: v$($env:GitVersion_MajorMinorPatch) | |
tag_name: v${{ needs.build.outputs.semver }} | |
release_name: Release v${{ needs.build.outputs.semver }} | |
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 | |