Make more playlist-related strings translatable #724
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: Msys2 CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-2022 | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- name: Install packages | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: mingw64 | |
update: true | |
install: >- | |
git | |
base-devel | |
wget | |
p7zip | |
mingw-w64-x86_64-cmake | |
mingw-w64-x86_64-ninja | |
mingw-w64-x86_64-toolchain | |
mingw-w64-x86_64-qt6 | |
mingw-w64-x86_64-qt-creator | |
mingw-w64-x86_64-boost | |
- name: Avoid line ending issues on Windows | |
run: git config --global core.autocrlf input | |
- uses: actions/checkout@v4 | |
- name: Download static build of libmpv | |
uses: robinraju/release-downloader@v1 | |
with: | |
repository: "shinchiro/mpv-winbuild-cmake" | |
latest: true | |
fileName: "mpv-dev-x86_64-????????-git-*.7z" | |
- name: Download yt-dlp | |
uses: robinraju/release-downloader@v1 | |
with: | |
repository: "yt-dlp/yt-dlp" | |
latest: true | |
fileName: "yt-dlp.exe" | |
- name: Extract mpv | |
run: | | |
7z x mpv-dev-x86_64-*.7z -ompv-dev | |
mv mpv-dev/libmpv* mpv-dev/lib | |
- name: Set version | |
run: echo "FORCE_VERSION=$( cat .github/actions/data/VERSION )" >> $GITHUB_ENV | |
- name: Build | |
run: | | |
chmod +x *.sh | |
set +e | |
bash make-win-icon.sh | |
bash make-release-msys2.sh | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "mpc-qt-win" | |
path: mpc-qt-*/ | |
tests: | |
name: Windows | |
needs: build | |
uses: ./.github/workflows/windows_tests.yml |