mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-08 20:09:43 +00:00
Actions: fixes
This commit is contained in:
parent
50e239e607
commit
780e8a46e0
1 changed files with 9 additions and 2 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -73,12 +73,12 @@ jobs:
|
||||||
- name: build
|
- name: build
|
||||||
run: docker run --rm -v $PWD:/feather -w /feather feather:win sh -c 'make release-static-windows root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j3'
|
run: docker run --rm -v $PWD:/feather -w /feather feather:win sh -c 'make release-static-windows root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j3'
|
||||||
- name: sha256sum
|
- name: sha256sum
|
||||||
run: shasum -a256 /home/runner/work/feather/feather/build/release/bin/feather.exe
|
run: shasum -a256 /home/runner/work/feather/feather/build/x86_64-w64-mingw32/release/bin/feather.exe
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.job }}
|
name: ${{ github.job }}
|
||||||
path: |
|
path: |
|
||||||
/home/runner/work/feather/feather/build/release/bin/feather.exe
|
/home/runner/work/feather/feather/build/x86_64-w64-mingw32/release/bin/feather.exe
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
|
@ -90,3 +90,10 @@ jobs:
|
||||||
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install qt@5 libsodium libzip qrencode unbound cmake boost hidapi openssl expat libunwind-headers protobuf pkgconfig zbar
|
run: HOMEBREW_NO_AUTO_UPDATE=1 brew install qt@5 libsodium libzip qrencode unbound cmake boost hidapi openssl expat libunwind-headers protobuf pkgconfig zbar
|
||||||
- name: build
|
- name: build
|
||||||
run: CMAKE_PREFIX_PATH=/usr/local/opt/qt@5/ make mac-release -j3
|
run: CMAKE_PREFIX_PATH=/usr/local/opt/qt@5/ make mac-release -j3
|
||||||
|
- name: create .tar
|
||||||
|
run: tar -cf feather.tar feather.app
|
||||||
|
working-directory: build/release/bin
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: ${{ github.job }}
|
||||||
|
path: build/release/bin/feather.tar
|
Loading…
Reference in a new issue