diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 454d00aa..570b0044 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,10 +42,9 @@ jobs: brew install cmake git autoconf automake qt@5 gcc texinfo gettext brew link qt@5 brew link gcc - brew link gettext --force + brew unlink gettext && brew link gettext --force if: matrix.os == 'macos-latest' - - name: Cache Qt id: cache-qt uses: actions/cache@v1 @@ -83,7 +82,7 @@ jobs: ./configure --enable-maintainer-mode --enable-static=yes && make -j2 sudo make install cd ${{github.workspace}} - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + if: matrix.os == 'ubuntu-latest' - name: Build assuan run: | @@ -94,7 +93,7 @@ jobs: ./configure --enable-maintainer-mode --enable-static=yes && make -j2 sudo make install cd ${{github.workspace}} - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + if: matrix.os == 'ubuntu-latest' - name: Build GpgME run: | @@ -105,7 +104,7 @@ jobs: ./configure --enable-maintainer-mode --enable-static=yes --enable-languages=cpp && make -j2 sudo make install cd ${{github.workspace}} - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + if: matrix.os == 'ubuntu-latest' - name: Build GpgME (Windows) shell: msys2 {0} @@ -164,7 +163,7 @@ jobs: uses: actions/upload-artifact@master with: name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE}}-${{steps.vars.outputs.sha_short}} - path: ${{github.workspace}}/build/release/* + path: {{github.workspace}}/build/artifact-out/* if: matrix.os == 'macos-latest' - name: Upload Artifact(Windows) |