Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Somfic authored Sep 1, 2023
2 parents f551e29 + 2c0231e commit 60e012c
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,38 +73,14 @@ jobs:
- name: Pack
if: ${{env.nuget_key != ''}}
run: dotnet pack --configuration Release --output nupkgs --include-symbols --include-source

- name: Setup Ruby v3
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"

- name: Set up new Gemfile
run: bundle init

- name: Install changelog generator
run: gem install github_changelog_generator

- name: Install changelog generator
run: gem 'github_changelog_generator', '~> 1.15.1'

- name: Install dependencies
run: bundle install

- name: Install changelog generator
run: gem install github_changelog_generator

- name: Generate changelog
run: bundle exec github_changelog_generator -u ${{github.repository_owner}} -p ${{github.event.repository.name}} --token ${{secrets.GITHUB_TOKEN}} --since-tag ${{ steps.LAST.outputs.previous}} --future-release ${{ env.GitVersion_LegacySemVer }}


- name: Create release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
tag_name: ${{ env.GitVersion_LegacySemVer }}
name: v${{ env.GitVersion_LegacySemVer }}
body_path: CHANGELOG.md
prerelease: ${{ env.GitVersion_PreReleaseLabel == 'alpha' || env.GitVersion_PreReleaseLabel == 'beta' }}

- name: Publish project to NuGet
Expand Down

0 comments on commit 60e012c

Please sign in to comment.