Bump app/SDL_GameControllerDB from 8d9fefd to a28c433
#720
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 | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - master | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| ci_version: ${{ steps.set-ci-version.outputs.ci_version }} | |
| steps: | |
| - name: Set CI version | |
| id: set-ci-version | |
| shell: bash | |
| run: | | |
| CI_VERSION=`echo ${GITHUB_SHA} | cut -c1-6` | |
| echo "ci_version=${CI_VERSION}" >> "${GITHUB_OUTPUT}" | |
| build-appimage: | |
| needs: setup | |
| uses: ./.github/workflows/build-appimage.yml | |
| with: | |
| ci_version: ${{ needs.setup.outputs.ci_version }} | |
| build-steamlink: | |
| needs: setup | |
| uses: ./.github/workflows/build-steamlink.yml | |
| with: | |
| ci_version: ${{ needs.setup.outputs.ci_version }} | |
| build-windows-macos: | |
| needs: setup | |
| uses: ./.github/workflows/build-win-mac.yml | |
| with: | |
| ci_version: ${{ needs.setup.outputs.ci_version }} |