Skip to content

Commit 2cffa46

Browse files
committed
fix: some build issues of github actions
1 parent afe9e64 commit 2cffa46

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: .github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ jobs:
6060
PP_PATH=$RUNNER_TEMP/${{secrets.GPGFRONTEND_XOCDE_PROVISIONING_PROFILE_UUID}}.provisionprofile
6161
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
6262
63-
echo -n "${{secrets.MACOS_CERTIFICATE}}" | base64 --decode --output $CERTIFICATE_PATH
64-
echo -n "${{secrets.GPGFRONTEND_XOCDE_PROVISIONING_PROFILE_DATA}}" | base64 --decode --output $PP_PATH
63+
echo -n "${{secrets.MACOS_CERTIFICATE}}" | base64 --decode -o $CERTIFICATE_PATH
64+
echo -n "${{secrets.GPGFRONTEND_XOCDE_PROVISIONING_PROFILE_DATA}}" | base64 --decode -o $PP_PATH
6565
6666
security create-keychain -p gpgfrontend build.keychain
6767
security default-keychain -s build.keychain
@@ -165,7 +165,7 @@ jobs:
165165
- name: Build GpgME (Windows)
166166
shell: msys2 {0}
167167
run: |
168-
git clone --depth 1 --branch gpgme-1.18.0 git://git.gnupg.org/gpgme.git ${{github.workspace}}/third_party/gpgme
168+
git clone --depth 1 --branch gpgme-1.23.2 git://git.gnupg.org/gpgme.git ${{github.workspace}}/third_party/gpgme
169169
cd ${{github.workspace}}/third_party/gpgme
170170
./autogen.sh
171171
./configure --enable-maintainer-mode --enable-languages=cpp --disable-gpg-test && make -j4
@@ -178,12 +178,12 @@ jobs:
178178
run: |
179179
cmake -B ${{github.workspace}}/build-full-sdk -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_FULL_SDK=ON
180180
cmake --build ${{github.workspace}}/build-full-sdk --config {{$env.BUILD_TYPE}} -- -v
181-
cmake --install ${{github.workspace}}/build-full-sdk --config {{$env.BUILD_TYPE}}
181+
sudo cmake --install ${{github.workspace}}/build-full-sdk --config {{$env.BUILD_TYPE}}
182182
183183
- name: Build Integrated Modules
184184
# Build your GpgFrontend with the given configuration
185185
run: |
186-
cmake -B ${{github.workspace}}/modules/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/modules/build/artifacts
186+
cmake -S ${{github.workspace}}/modules -B ${{github.workspace}}/modules/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/modules/build/artifacts
187187
cmake --build ${{github.workspace}}/modules/build --config {{$env.BUILD_TYPE}} -- -v
188188
cmake --install ${{github.workspace}}/modules/build --config {{$env.BUILD_TYPE}}
189189

Diff for: modules

0 commit comments

Comments
 (0)