Skip to content

Commit

Permalink
🚀Production Release (v14.1.0) (#246)
Browse files Browse the repository at this point in the history
* release: update version to v14.1.0

* release: create release notes for version v14.1.0

* release: improve release notes for version v14.1.0

* ci: update reusable workflows to latest version

* ci: add missing env permission flag
  • Loading branch information
CalvinWilkinson committed Dec 21, 2024
1 parent 2c1314c commit e2dd81c
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/add-item-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ jobs:
Write-Host "::notice::NuGet Package Check Script URL: $scriptUrl";
deno run --allow-net --allow-read "$scriptUrl";
deno run -ERN "$scriptUrl";
2 changes: 1 addition & 1 deletion .github/workflows/add-new-item-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
add_new_item_to_project:
name: Add New Issue
needs: item_number
uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v14.1.0
with:
org-name: "${{ vars.ORGANIZATION_NAME }}"
org-project-name: "${{ vars.ORG_PROJECT_NAME }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-csharp-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
resolve_proj_file_path:
name: Resolving ${{ inputs.project-name }} Project File Path
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v14.1.0
with:
project-name: ${{ inputs.project-name }}
base-path: ${{ inputs.base-path }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/dotnet-action-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
validate_version:
name: Validate Version
needs: [print_validate_workflow, validate_branch]
uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}"
release-type: "${{ inputs.release-type }}"
Expand All @@ -168,7 +168,7 @@ jobs:
validate_tag:
name: Validate Tag
needs: validate_version
uses: KinsonDigital/Infrastructure/.github/workflows/validate-tag.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/validate-tag.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}"
release-type: "${{ inputs.release-type }}"
Expand All @@ -180,7 +180,7 @@ jobs:
validate_sdk_setup:
name: Validate SDK Setup
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-versions.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-versions.yml@v14.1.0
with:
repo-name: "${{ inputs.project-name }}"
secrets:
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
validate_github_release:
name: GitHub Release Does Not Exist
needs: validate_version
uses: KinsonDigital/Infrastructure/.github/workflows/validate-github-release.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/validate-github-release.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}"
version: "${{ needs.validate_version.outputs.version }}"
Expand All @@ -227,7 +227,7 @@ jobs:
build_project:
name: Build Main Project (${{ inputs.project-name }})
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}"
runs-on: "${{ inputs.runs-on }}"
Expand All @@ -240,7 +240,7 @@ jobs:
run_tests:
name: Run Tests
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}Tests"
runs-on: "${{ inputs.runs-on }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-lib-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ env:
jobs:
validate_version:
name: Validate Version
uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/validate-csharp-version.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}"
release-type: "${{ inputs.release-type }}"
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
build_project:
name: Build Main Project
needs: [run_prerelease_validation]
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}"
runs-on: "${{ inputs.runs-on }}"
Expand All @@ -292,7 +292,7 @@ jobs:
run_tests:
name: Run Tests
needs: [run_prerelease_validation]
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v14.1.0
with:
project-name: "${{ inputs.project-name }}Tests"
runs-on: "${{ inputs.runs-on }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-csharp-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
resolve_proj_file_path:
name: Resolving ${{ inputs.project-name }} Project File Path
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/resolve-csharp-proj-file.yml@v14.1.0
with:
project-name: ${{ inputs.project-name }}
base-path: ${{ inputs.base-path }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-pr-to-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
github.event_name == 'pull_request_target' &&
!startsWith(github.head_ref, 'renovate/') &&
github.head_ref != 'prev-release' && github.head_ref != 'prod-release'
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v14.1.0
with:
issue-or-pr-number: ${{ github.event.pull_request.number }}
sync-type: initial
Expand All @@ -37,7 +37,7 @@ jobs:
github.head_ref != 'prev-release' && github.head_ref != 'prod-release' &&
github.event.issue.pull_request && github.event.issue.pull_request.url != null &&
contains(github.event.comment.body, '[run-sync]')
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v14.0.0
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v14.1.0
with:
issue-or-pr-number: ${{ github.event.issue.number }}
sync-type: manual
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "v14.0.0",
"version": "v14.1.0",
"tasks": {
"check": "deno check ./**/*.ts",
"lint": "deno lint ./**/*.ts",
Expand Down
14 changes: 14 additions & 0 deletions release-notes/production-releases/Release-Notes-v14.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<h1 align="center" style="color: mediumseagreen;font-weight: bold;">
Infrastructure Production Release Notes - v14.1.0
</h1>

<h2 align="center" style="font-weight: bold;">Bug Fixes 🐛</h2>

1. [#243](https://github.com/KinsonDigital/Infrastructure/issues/243) - Fixed env vars in dotnet release workflow.
2. [#242](https://github.com/KinsonDigital/Infrastructure/issues/242) - Added a check for the release notes for dotnet library releases.

<h2 align="center" style="font-weight: bold;">CICD ⚙️</h2>

1. [#243](https://github.com/KinsonDigital/Infrastructure/issues/243) - Fixed an issue where the following environment variables in the dotnet library release workflow was incorrect:
- `BASE_SEARCH_DIR_PATH`
- `NET_SDK_VERSION`

0 comments on commit e2dd81c

Please sign in to comment.