Skip to content

Commit

Permalink
Merge pull request #435 from baynezy/release/6.2.2.5
Browse files Browse the repository at this point in the history
Release version 6.2.2.5
  • Loading branch information
baynezy authored Aug 2, 2024
2 parents 72a9b12 + eed9b52 commit e5e7434
Show file tree
Hide file tree
Showing 55 changed files with 3,286 additions and 2,587 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/branch-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ on:
jobs:
get-version:
uses: ./.github/workflows/step-version.yml
with:
is-pre-release: true

build:
needs: [get-version]
Expand All @@ -24,3 +26,18 @@ jobs:
with:
version: ${{ needs.get-version.outputs.version }}
checkout-ref: ${{ github.base_ref }}

publish-to-nuget:
needs: [get-version,build]
uses: ./.github/workflows/step-publish.yml
secrets: inherit
with:
deploy-env: nuget-beta
deploy-branch: ${{ github.base_ref }}
version: ${{ needs.get-version.outputs.version }}

tag-release:
needs: [get-version,publish-to-nuget]
uses: ./.github/workflows/step-tag-release.yml
with:
version: ${{ needs.get-version.outputs.version }}
2 changes: 1 addition & 1 deletion .github/workflows/branch-hotfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
patch-version: ${{ steps.increment_version.outputs.patch_version }}
build-version: ${{ github.run_number }}
- name: Update changelog
uses: thomaseizinger/keep-a-changelog-new-release@3.0.0
uses: thomaseizinger/keep-a-changelog-new-release@3.1.0
with:
tag: ${{ needs.get-version.outputs.major }}.${{ needs.get-version.outputs.minor }}.${{ steps.increment_version.outputs.patch_version }}.${{ github.run_number }}
- name: Commit Changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
build-version: ${{ github.run_number }}

- name: Update changelog
uses: thomaseizinger/keep-a-changelog-new-release@3.0.0
uses: thomaseizinger/keep-a-changelog-new-release@3.1.0
with:
tag: ${{ github.event.inputs.major_version }}.${{ github.event.inputs.minor_version }}.${{ github.event.inputs.patch_version }}.${{ github.run_number }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: gitStream workflow automation
steps:
- name: Evaluate Rules
uses: linear-b/gitstream-github-action@v1
uses: linear-b/gitstream-github-action@v2
id: rules-engine
with:
full_repository: ${{ github.event.inputs.full_repository }}
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Push Documentation

on:
push:
branches:
- master
workflow_dispatch:


jobs:
push-documentation:
runs-on: ubuntu-latest
environment: github-pages
steps:
- uses: DenverCoder1/[email protected]
with:
github_token: ${{ secrets.PUBLISH_DOCS_TOKEN }}
branch: gh-pages
config_file: doxygen.config
4 changes: 2 additions & 2 deletions .github/workflows/step-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
ref: ${{ inputs.checkout-ref }}
- name: Setup .NET Core
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
dotnet-version: 8.0.x
- name: Restore
Expand All @@ -43,7 +43,7 @@ jobs:
target: Test
- name: Publish Unit Test Results
if: ${{ github.actor != 'dependabot[bot]' }}
uses: EnricoMi/publish-unit-test-result-action/composite@v2
uses: EnricoMi/publish-unit-test-result-action/linux@v2
with:
files: "**/TestResults/*.xml"
- name: Build NuGet Package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/step-publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: ${{ inputs.package-name }}
path: ./src/Html2Markdown/bin/Release
- name: Setup .NET Core
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
dotnet-version: 8.0.x
- name: Push package to NuGet
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/step-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
suffix=""
if [ "${{ inputs.is-pre-release }}" == true ]; then
suffix="-alpha"
suffix="-beta"
fi
if [ "${{ inputs.static-build }}" == true ]; then
Expand Down
6 changes: 6 additions & 0 deletions .idea/.idea.Html2Markdown/.idea/git_toolbox_blame.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e5e7434

Please sign in to comment.