feat: update to .net8 #39
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 and pack | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install Dotnet Tool | |
run: | | |
dotnet tool install -g Passingwind.Git-CI-Tools | |
gitci --version | |
- name: Set environment variables | |
uses: rlespinasse/[email protected] | |
- name: Version check and generate | |
run: | | |
gitci release changes --output ./changeslog.md | |
gitci version next --format json --output ./version.json --build-ver "${{env.GITHUB_SHA_SHORT}}" | |
ls ./ | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -c Release | |
- name: Pack | |
run: dotnet pack --no-build --no-restore -c Release /p:Version="${{env.GITCI_NEXT_VERSION}}" -o ./ | |
- name: Push package | |
run: dotnet nuget push ./*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_TOKEN}} --source https://api.nuget.org/v3/index.json | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: v${{env.GITCI_NEXT_VERSION}} | |
artifacts: ./*.nupkg, ./changeslog* | |
bodyFile: ./changeslog.md | |
prerelease: false | |
token: ${{ secrets.GITHUB_TOKEN }} |