aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/debug.yml2
-rw-r--r--.github/workflows/release.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml
index 4ee104b1..b17c0d5c 100644
--- a/.github/workflows/debug.yml
+++ b/.github/workflows/debug.yml
@@ -97,7 +97,7 @@ jobs:
- name: Build GpgME (Windows)
shell: msys2 {0}
run: |
- cd ${{github.workspace}}/third_party/gpgme
+ cd $(echo "/${{github.workspace}}/third_party/gpgme" | sed 's/\\/\//g' | sed 's/://')
./autogen.sh
./configure --enable-maintainer-mode --enable-static=yes --disable-gpg-test --enable-languages=cpp LDFLAGS="-static" && make -j2
make install
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 52d53dcd..55759e10 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -104,7 +104,7 @@ jobs:
- name: Build GpgME (Windows)
shell: msys2 {0}
run: |
- cd ${{github.workspace}}/third_party/gpgme
+ cd $(echo "/${{github.workspace}}/third_party/gpgme" | sed 's/\\/\//g' | sed 's/://')
./autogen.sh
./configure --enable-maintainer-mode --enable-static=yes --disable-gpg-test --enable-languages=cpp LDFLAGS="-static" && make -j2
make install