[RELEASE] main #119
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
name: '[RELEASE] main' | |
on: | |
pull_request_review: | |
types: [submitted] | |
branches: | |
- 'release/v*' | |
concurrency: | |
group: 'release-main' | |
jobs: | |
get-release-info: | |
if: github.event.review.state == 'approved' | |
runs-on: ubuntu-latest | |
outputs: | |
release-version: ${{ steps.release-version.outputs.release-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'set release-version' | |
id: release-version | |
run: | | |
echo "release-version=$(<${{ github.workspace }}/.version)" >> $GITHUB_OUTPUT | |
print-information: | |
needs: [get-release-info] | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'print information' | |
run: | | |
echo "release-version: ${{ needs.get-release-info.outputs.release-version }}" | |
build-core: | |
needs: [get-release-info] | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
configurations: [Debug, Release] | |
platforms: [AnyCPU, x64] | |
name: 'build core in ${{ matrix.configurations }} on ${{ matrix.os }} for ${{ matrix.platforms }}' | |
runs-on: ${{ matrix.os }} | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- run: | | |
dotnet build Exomia.Vulkan.Api.Core.sln --configuration ${{ matrix.configurations }} --force --nologo -p:Platform="${{ matrix.platforms }}" | |
check-core-build: | |
if: ${{ github.event.review.state == 'approved' && always() }} | |
name: '[CHECK] RELEASE CORE BUILD SUCCESS' | |
needs: [build-core] | |
runs-on: ubuntu-latest | |
steps: | |
- name: '[CHECK] build-core status' | |
if: ${{ needs.build-core.result != 'success' }} | |
run: exit 1 | |
publish-core-on-github: | |
needs: [get-release-info, build-core] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platforms: [AnyCPU, x64] | |
permissions: | |
packages: write | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- run: | | |
dotnet pack src/Exomia.Vulkan.Api.Core/Exomia.Vulkan.Api.Core.csproj --configuration Debug --force --nologo --output ~/.packages -p:Platform="${{ matrix.platforms }}" | |
- name: 'publish ${{ github.repository }} to github' | |
run: | | |
dotnet nuget push ~/.packages/*.nupkg --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --api-key ${{ github.token }} --skip-duplicate | |
publish-core-on-nuget: | |
needs: [get-release-info, build-core, publish-core-on-github] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platforms: [AnyCPU, x64] | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- run: | | |
dotnet pack src/Exomia.Vulkan.Api.Core/Exomia.Vulkan.Api.Core.csproj --configuration Release --force --nologo --output ~/.packages -p:Platform="${{ matrix.platforms }}" | |
- name: 'publish ${{ github.repository }} to github' | |
run: | | |
dotnet nuget push ~/.packages/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.EXOMIA_NUGET_API_KEY_PUSH }} --skip-duplicate | |
check-core-publish: | |
if: ${{ github.event.review.state == 'approved' && always() }} | |
name: '[CHECK] RELEASE CORE PUBLISH SUCCESS' | |
needs: [publish-core-on-github, publish-core-on-nuget] | |
runs-on: ubuntu-latest | |
steps: | |
- name: '[CHECK] publish-core-on-github status' | |
if: ${{ needs.publish-core-on-github.result != 'success' }} | |
run: exit 1 | |
- name: '[CHECK] publish-core-on-nuget status' | |
if: ${{ needs.publish-core-on-nuget.result != 'success' }} | |
run: exit 1 | |
nuget-wait-for-core-package-to-be-available: | |
name: '[NUGET] wait for core-package to be available' | |
needs: [get-release-info, build-core, publish-core-on-nuget] | |
strategy: | |
matrix: | |
packages: ['exomia.vulkan.api.core', 'exomia.vulkan.api.core.x64'] | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
until $(curl -fsS -o /dev/null 'https://api.nuget.org/v3/registration5-gz-semver2/${{ matrix.packages }}/${{ needs.get-release-info.outputs.release-version }}.json'); do sleep 60;done | |
build-platforms: | |
needs: [get-release-info, nuget-wait-for-core-package-to-be-available] | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
configurations: [Debug, Release] | |
platforms: [AnyCPU, x64] | |
name: 'build platform in ${{ matrix.configurations }} on ${{ matrix.os }} for ${{ matrix.platforms }}' | |
runs-on: ${{ matrix.os }} | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- run: | | |
dotnet build Exomia.Vulkan.Api.Platforms.sln --configuration ${{ matrix.configurations }} --force --nologo -p:Platform="${{ matrix.platforms }}" | |
check-platforms-build: | |
if: ${{ github.event.review.state == 'approved' && always() }} | |
name: '[CHECK] RELEASE PLATFORMS BUILD SUCCESS' | |
needs: [build-platforms] | |
runs-on: ubuntu-latest | |
steps: | |
- name: '[CHECK] build-platforms status' | |
if: ${{ needs.build-platforms.result != 'success' }} | |
run: exit 1 | |
publish-platforms-on-github: | |
needs: [get-release-info, build-platforms] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platforms: [AnyCPU, x64] | |
permissions: | |
packages: write | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- run: | | |
dotnet sln Exomia.Vulkan.Api.Platforms.sln list | grep src | while read -r path; do | |
dotnet pack $path --configuration Debug --force --nologo --output ~/.packages -p:Platform="${{ matrix.platforms }}" | |
done | |
- name: 'publish ${{ github.repository }} to github' | |
run: | | |
dotnet nuget push ~/.packages/*.nupkg --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --api-key ${{ github.token }} --skip-duplicate | |
publish-platforms-on-nuget: | |
needs: [get-release-info, build-platforms, publish-platforms-on-github] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
platforms: [AnyCPU, x64] | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: 1 | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- run: | | |
dotnet sln Exomia.Vulkan.Api.Platforms.sln list | grep src | while read -r path; do | |
dotnet pack $path --configuration Release --force --nologo --output ~/.packages -p:Platform="${{ matrix.platforms }}" | |
done | |
- name: 'publish ${{ github.repository }} to github' | |
run: | | |
dotnet nuget push ~/.packages/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.EXOMIA_NUGET_API_KEY_PUSH }} --skip-duplicate | |
check-platforms-publish: | |
if: ${{ github.event.review.state == 'approved' && always() }} | |
name: '[CHECK] RELEASE PLATFORMS PUBLISH SUCCESS' | |
needs: [publish-platforms-on-github, publish-platforms-on-nuget] | |
runs-on: ubuntu-latest | |
steps: | |
- name: '[CHECK] publish-platforms-on-github status' | |
if: ${{ needs.publish-platforms-on-github.result != 'success' }} | |
run: exit 1 | |
- name: '[CHECK] publish-platforms-on-nuget status' | |
if: ${{ needs.publish-platforms-on-nuget.result != 'success' }} | |
run: exit 1 | |
create-release: | |
needs: [get-release-info, publish-platforms-on-nuget] | |
runs-on: ubuntu-latest | |
outputs: | |
response: ${{ steps.create-release.outputs.result }} | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/github-script@v7 | |
id: create-release | |
with: | |
script: | | |
return await github.rest.repos.createRelease({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
tag_name: 'v${{ needs.get-release-info.outputs.release-version }}', | |
generate_release_notes: true, | |
target_commitish: '${{ github.event.pull_request.head.ref }}' | |
}); | |
check-release-success: | |
if: ${{ github.event.review.state == 'approved' && always() }} | |
name: '[CHECK] RELEASE SUCCESS' | |
needs: [create-release] | |
runs-on: ubuntu-latest | |
steps: | |
- if: ${{ needs.create-release.result != 'success' }} | |
run: exit 1 | |
discord-announcement: | |
needs: [get-release-info, create-release] | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
curl -fsS -H "Accept: application/json" -H "Content-Type:application/json" -X POST ${{ secrets.EXOMIA_DISCORD_VULKAN_WEBHOOK_URL }} \ | |
--data-binary @- << EOF | |
{ | |
"username": "vulkan-api", | |
"content": "A new release was published [${{ fromJson(needs.create-release.outputs.response).data.tag_name }}](${{ fromJson(needs.create-release.outputs.response).data.html_url }})!", | |
"embeds": [ | |
{ | |
"description": ${{ toJson(fromJson(needs.create-release.outputs.response).data.body) }}, | |
"color": 5814783 | |
} | |
] | |
} | |
EOF | |
- run: | | |
curl -fsS -H "Accept: application/json" -H "Content-Type:application/json" -X POST ${{ secrets.EXOMIA_DISCORD_ANNOUNCEMENTS_WEBHOOK_URL }} \ | |
--data-binary @- << EOF | |
{ | |
"username": "vulkan-api", | |
"content": "A new release was published [${{ fromJson(needs.create-release.outputs.response).data.tag_name }}](${{ fromJson(needs.create-release.outputs.response).data.html_url }})!", | |
"embeds": [ | |
{ | |
"description": ${{ toJson(fromJson(needs.create-release.outputs.response).data.body) }}, | |
"color": 5814783 | |
} | |
] | |
} | |
EOF |