Replace direct donation links with a link to the donate page #51
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: build | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'packaging/org.videolan.VLC.Plugin.pause_click.appdata.xml' | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- '**.md' | |
- 'packaging/org.videolan.VLC.Plugin.pause_click.appdata.xml' | |
concurrency: | |
group: build-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
target-os: [linux, windows, macos] | |
vlc-version: ["2.1", "2.2", "3.0", "4.0"] | |
exclude: | |
# VLC 4.0 is not currently packaged by any distro | |
- target-os: linux | |
vlc-version: "4.0" | |
include: | |
- target-os: linux | |
runs-on: ubuntu-latest | |
- target-os: windows | |
runs-on: ubuntu-latest | |
- target-os: macos | |
runs-on: macos-latest | |
runs-on: ${{ matrix.runs-on }} | |
name: ${{ matrix.target-os }} - VLC ${{ matrix.vlc-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: .github/ci-scripts/build.sh ${{ matrix.target-os }} ${{ matrix.vlc-version }} | |
- if: matrix.target-os == 'macos' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.target-os }} - VLC ${{ matrix.vlc-version }} | |
path: artifacts/*.zip |