diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c211931d6c..9a2f077d28 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,6 +49,10 @@ jobs: - name: SHA256 checksum run: openssl sha256 ${{ env.ARTIFACT_NAME }}.tar.bz2 working-directory: build/release + - uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: build/release/${{ env.ARTIFACT_NAME }}.tar.bz2 - uses: actions/upload-artifact@v2 with: name: ${{ env.ARTIFACT_NAME }}.tar.bz2 @@ -146,6 +150,10 @@ jobs: - name: SHA256 checksum run: openssl sha256 ${{ env.ARTIFACT_NAME }}.tar.bz2 working-directory: build/release + - uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: build/release/${{ env.ARTIFACT_NAME }}.tar.bz2 - uses: actions/upload-artifact@v2 with: name: ${{ env.ARTIFACT_NAME }}.tar.bz2 @@ -205,6 +213,10 @@ jobs: - name: SHA256 checksum run: openssl sha256 ${{ env.ARTIFACT_NAME }}.zip working-directory: build/release + - uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: build/release/${{ env.ARTIFACT_NAME }}.zip - uses: actions/upload-artifact@v2 with: name: ${{ env.ARTIFACT_NAME }}.zip diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh index bf12bd7b87..5e12b17249 100755 --- a/get_libwallet_api.sh +++ b/get_libwallet_api.sh @@ -17,7 +17,7 @@ if [ ! -d $MONERO_DIR/src ]; then fi git submodule update --remote git -C $MONERO_DIR fetch -git -C $MONERO_DIR checkout origin/master +git -C $MONERO_DIR checkout v0.14.2.1-aeon # get monero core tag pushd $MONERO_DIR