Skip to content

Commit

Permalink
Add repository URL to packages, fix version extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Feb 25, 2024
1 parent 575151f commit c6526e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ jobs:
uses: mindsers/changelog-reader-action@v2
with:
validation_level: warn
version: ${{ env.PLUGIN_VERSION }}
version: ${{ env.RELEASE_VERSION }}
path: ./CHANGELOG.md
- name: 🚀 Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ env.PLUGIN_VERSION }}
name: ${{ env.PLUGIN_VERSION }}
tag_name: v${{ env.RELEASE_VERSION }}
name: ${{ env.RELEASE_VERSION }}
draft: true
prerelease: false
generate_release_notes: false
Expand Down
1 change: 1 addition & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<Version>1.1.0-preview1</Version>
<Authors>seclerp</Authors>
<RepositoryUrl>https://github.com/seclerp/dotnet-chrome-protocol</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

Expand Down

0 comments on commit c6526e1

Please sign in to comment.