We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0180d4b commit 7de3bc9Copy full SHA for 7de3bc9
.github/workflows/build-and-deploy.yml
@@ -182,9 +182,12 @@ jobs:
182
dir="$(cygpath -au artifacts)" &&
183
mkdir -p "$dir" &&
184
cd "/usr/src/$REPO/$PACKAGE_TO_BUILD" &&
185
- MAKEFLAGS=-j6 PKGEXT='.pkg.tar.xz' makepkg-mingw -s --noconfirm &&
+ MAKEFLAGS=-j6 PKGEXT='.pkg.tar.xz' MINGW_ARCH="mingw32 mingw64" makepkg-mingw -s --noconfirm &&
186
cp *.pkg.tar* "$dir/" &&
187
188
+ MAKEFLAGS=-j6 SRCEXT='.src.tar.gz' MINGW_ARCH=mingw64 makepkg-mingw --allsource &&
189
+ cp *.src.tar* "$dir/" &&
190
+
191
# Ensure that the Git worktree is still clean
192
ls -la &&
193
if ! git update-index --ignore-submodules --refresh ||
0 commit comments