Skip to content

Commit

Permalink
fix build on new tag
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvforvendetta committed Sep 4, 2024
1 parent ba6aaaf commit 63f3749
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-all-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
macos:
runs-on: macos-12
macos13:
runs-on: macos-13

steps:
- uses: actions/checkout@v4
Expand All @@ -16,10 +16,13 @@ jobs:
run: git config credential.helper

- name: Brew install base dependencies
run: brew install automake berkeley-db@4 boost@1.76 miniupnpc qt@5 gperf qrencode librsvg && curl -L https://raw.githubusercontent.com/vergecurrency/protobuf261/master/protobuf261.rb > protobuf261.rb && brew install protobuf261.rb
run: |
# A workaround for "The `brew link` step did not complete successfully" error.
brew install --quiet python@3 || brew link --overwrite python@3
brew install --quiet automake berkeley-db@4 boost@1.76 miniupnpc qt@5 gperf qrencode librsvg && curl -L https://raw.githubusercontent.com/vergecurrency/protobuf261/master/protobuf261.rb > protobuf261.rb && brew install protobuf261.rb
- name: Brew link dependencies
run: brew link boost@1.76 qt@5 berkeley-db@4
run: brew link boost@1.76 qt@5 berkeley-db@4

- name: Auto generate
run: ./autogen.sh
Expand All @@ -30,15 +33,12 @@ jobs:
- name: make
run: make -j4

- name: make check
run: make check -j4

- name: make .dmg
run: make deploy

- uses: actions/upload-artifact@v4
with:
name: verge-macos
name: verge-macos13
path: |
*.dmg
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
SendReleases:
runs-on: ubuntu-latest
needs: [macos, linux-ubuntu20, linux-ubuntu22, windows32, windows64]
needs: [macos13, ubuntu20, ubuntu22, ubuntu24, windows32, windows64]

steps:

Expand Down

0 comments on commit 63f3749

Please sign in to comment.