Release #45
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 | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
amalgamation: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install requirements | |
run: | | |
pip install quom | |
- name: Generate amalgamated header/source files | |
run: | | |
mkdir build | |
cd build | |
cmake -DRTVAMP_ENABLE_AMALGAMATION=ON .. | |
cmake --build . --target rtvamp-pluginsdk-amalgamation | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pluginsdk_amalgamated | |
path: build/amalgamation/pluginsdk/include/rtvamp/pluginsdk.hpp | |
release: | |
runs-on: ubuntu-20.04 | |
needs: amalgamation | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: pluginsdk_amalgamated | |
- name: List files | |
run: ls -R | |
- name: Add assets to release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
pluginsdk.hpp |