Skip to content

Commit

Permalink
Fix worfklow
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelyz committed Oct 8, 2024
1 parent 848f189 commit 09b10dd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest]

permissions:
contents: write

runs-on: ${{ matrix.os }}
steps:
- name: checkout
Expand All @@ -23,6 +26,15 @@ jobs:
compiler: ldc
dub: latest

- name: install ncurses
shell: bash
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
brew install ncurses
mkdir -p /usr/local/opt/ncurses
ln -s /opt/homebrew/opt/ncurses/lib /usr/local/opt/ncurses/lib
fi
- name: build executable
shell: bash
run: ./release.sh
Expand Down

0 comments on commit 09b10dd

Please sign in to comment.