-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--- We've automated the release process. --- Type: imp Breaking: False Doc Required: False Backport Required: False Part: 1/1
- Loading branch information
Showing
6 changed files
with
73 additions
and
74 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Prepare release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: write | ||
attestations: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
ref: ${{ github.ref }} | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: '8.0.x' | ||
- name: Setup DocFX | ||
run: dotnet tool install --global docfx | ||
- name: Release Asset Preparation | ||
id: release-asset | ||
run: | | ||
chmod +x tools/*.sh | ||
make | ||
cd tools ; ./pack.sh ; cd .. | ||
make doc | ||
cd tools ; ./docgen-pack.sh ; cd .. | ||
echo "SUBJECT=$(cat CHANGES.TITLE)" >> "$GITHUB_OUTPUT" | ||
echo 'BODY<<EOF' >> "$GITHUB_OUTPUT" | ||
cat CHANGES >> "$GITHUB_OUTPUT" | ||
echo 'EOF' >> "$GITHUB_OUTPUT" | ||
- name: Binary Attestation | ||
uses: actions/attest-build-provenance@v1 | ||
with: | ||
subject-path: 'tools/*.zip' | ||
- name: Release Making | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
body_path: CHANGES | ||
name: ${{ steps.release-asset.outputs.SUBJECT }} | ||
files: | | ||
tools/*.zip | ||
- name: Notify build | ||
uses: tsickert/discord-webhook@v6.0.0 | ||
with: | ||
webhook-url: ${{ secrets.WEBHOOK_URL }} | ||
content: "<:bassboom:1268904972297441404> ${{ steps.release-asset.outputs.SUBJECT }} <:bassboom:1268904972297441404>\n\n${{ steps.release-asset.outputs.BODY }}" | ||
- name: Package Publication | ||
run: | | ||
chmod +x tools/*.sh | ||
cd tools ; NUGET_APIKEY=${{ secrets.NUGET_APIKEY }} ./push.sh ; cd .. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
We've made another small release to update SpecProbe to 3.0.0 to accommodate the next Nitrocid version. | ||
|
||
### Changes | ||
|
||
This release contains a variety of changes, including, but not limited to: | ||
|
||
- `[*]` Updated SpecProbe to 3.0.0 | ||
|
||
Review the commit history if you want to get a deep insight about the changes. | ||
|
||
### Feedback? | ||
|
||
If you have issues with this version, report to us by [making a new issue ticket](https://github.com/Aptivi/BassBoom/issues/new). |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[servicing] BassBoom v0.1.7: Next Native! |
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