Release #1
Workflow file for this run
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 | ||
permissions: write-all | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
jobs: | ||
build-release: | ||
uses: ./.github/workflows/build.yml | ||
with: | ||
cmake-preset: x86-release | ||
upload-artifact-dll: release-dll | ||
upload-artifact-vdf: release-vdf | ||
project-version: ${{ github.ref_name }} | ||
build-release-pdb: | ||
uses: ./.github/workflows/build.yml | ||
with: | ||
cmake-preset: x86-release-pdb | ||
upload-artifact-dll: release-dll-pdb | ||
upload-artifact-vdf: release-vdf-pdb | ||
project-version: ${{ github.ref_name }}-pdb | ||
publish: | ||
name: Publish new release | ||
runs-on: windows-2022 | ||
needs: | ||
- build-release | ||
- build-release-pdb | ||
steps: | ||
- name: Download Release DLL | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: release-dll | ||
path: out/install/x86-release/bin/ | ||
- name: Download Release VDF | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: release-vdf | ||
path: out/install/x86-release/ | ||
- name: Download Release DLL PDB | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: release-dll-pdb | ||
path: out/build/x86-release-pdb/ | ||
- name: Download Release DLL VDF | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: release-vdf-pdb | ||
path: out/install/x86-release-pdb/ | ||
- name: Pack Release DLL | ||
run: Compress-Archive out/install/x86-release/bin/* release-dll.zip | ||
- name: Pack Release DLL PDB | ||
run: Compress-Archive out/build/x86-release-pdb/* release-dll-pdb.zip | ||
- name: Create release | ||
uses: actions/[email protected] | ||
env: | ||
RELEASE_TAG: ${{ github.ref_name }} | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
script: | | ||
if (!process.env.RELEASE_TAG) { | ||
core.setFailed("The environment variable RELEASE_TAG is not defined.") | ||
return; | ||
} | ||
try { | ||
const response = await github.rest.repos.createRelease({ | ||
draft: process.env.RELEASE_TAG.match(/^\d+\.\d+\.\d+-[a-z0-9-]+$/i) !== null, | ||
generate_release_notes: true, | ||
name: process.env.RELEASE_TAG, | ||
owner: context.repo.owner, | ||
prerelease: process.env.RELEASE_TAG.match(/^\d+\.\d+\.\d+-[a-z0-9-]+$/i) !== null, | ||
repo: context.repo.repo, | ||
tag_name: process.env.RELEASE_TAG, | ||
}); | ||
core.exportVariable('RELEASE_ID', response.data.id); | ||
core.exportVariable('RELEASE_UPLOAD_URL', response.data.upload_url); | ||
} catch (error) { | ||
core.setFailed(error.message); | ||
} | ||
- name: Upload Release DLL | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ RELEASE_UPLOAD_URL }} | ||
Check failure on line 90 in .github/workflows/release.yml GitHub Actions / ReleaseInvalid workflow file
|
||
asset_path: release-dll.zip | ||
asset_name: zBassMusic-${{ github.ref_name }}.zip | ||
asset_content_type: application/zip | ||
- name: Upload Release VDF | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ RELEASE_UPLOAD_URL }} | ||
asset_path: out/install/x86-release/zBassMusic.vdf | ||
asset_name: zBassMusic-${{ github.ref_name }}.vdf | ||
asset_content_type: application/octet-stream | ||
- name: Upload Release DLL PDB | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ RELEASE_UPLOAD_URL }} | ||
asset_path: release-dll-pdb.zip | ||
asset_name: zBassMusic-${{ github.ref_name }}-pdb.zip | ||
asset_content_type: application/zip | ||
- name: Upload Release VDF PDB | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ RELEASE_UPLOAD_URL }} | ||
asset_path: out/install/x86-release-pdb/zBassMusic.vdf | ||
asset_name: zBassMusic-${{ github.ref_name }}-pdb.vdf | ||
asset_content_type: application/octet-stream |