MangoHud Version 0.8.2-rc2 #16
Workflow file for this run
This file contains hidden or 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: Build source tars | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run build-source.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| set -x | |
| sudo apt update | |
| sudo apt -y install gcc g++ ninja-build python3-pip python3-setuptools python3-wheel pkg-config mesa-common-dev libx11-dev libxnvctrl-dev libdbus-1-dev glslang-tools hub libxkbcommon-dev libwayland-dev wget unzip | |
| sudo pip3 --no-input install 'meson>=0.60' mako | |
| ./build-source.sh | |
| assets=() | |
| for asset in ./MangoHud-*-Source*.tar.*; do | |
| assets+=("-a" "$asset") | |
| done | |
| tag_name="${GITHUB_REF##*/}" | |
| hub release edit "${assets[@]}" -m "" "$tag_name" | |
| #hub release create "${assets[@]}" -m "$tag_name" "$tag_name" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| continue-on-error: true | |
| with: | |
| name: MangoHud-${{steps.git-vars.outputs.artifact-metadata}} | |
| path: ${{runner.workspace}}/MangoHud/build/MangoHud-*tar.gz | |
| retention-days: 30 |