This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
Added support for custom FileGroup item in csproj (#6) #55
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: .NET release CI | |
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "6.0.301" # SDK Version to use. | |
- name: Build solution | |
id: build | |
run: dotnet publish BazelDotnet.sln --configuration Release | |
- name: Version tag | |
id: version | |
run: > | |
echo ("TAG_VERSION=" + "${{ github.ref }}".Split("/")[-1]) | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- name: Zip publish | |
run: 7z a ${{ env.TAG_VERSION }}.zip src/Afas.BazelDotnet/bin/Release/net6.0/publish/. | |
- name: Get Hash | |
run: > | |
echo ("ZIP_HASH=" + (Get-FileHash ${{ env.TAG_VERSION }}.zip).Hash.tolower()) | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ env.TAG_VERSION }} | |
release_name: Release ${{ env.TAG_VERSION }} | |
draft: false | |
prerelease: true | |
body: > | |
Zip: ${{ env.TAG_VERSION }}.zip | |
Hash: ${{ env.ZIP_HASH }} | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: ./${{ env.TAG_VERSION }}.zip | |
asset_name: ${{ env.TAG_VERSION }}.zip | |
asset_content_type: application/zip |