Skip to content

Commit

Permalink
add build essentials to release
Browse files Browse the repository at this point in the history
  • Loading branch information
barrydeen committed Sep 12, 2024
1 parent 7a59c4c commit 2b4c335
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
make-release:
runs-on: ubuntu-latest
steps:
- name: Install build-essential and LMDB development files
run: sudo apt-get update && sudo apt-get install -y build-essential liblmdb-dev

- name: Create Release
uses: actions/create-release@latest
env:
Expand All @@ -38,6 +41,10 @@ jobs:
goos: darwin
steps:
- uses: actions/checkout@v3

- name: Install build-essential and LMDB development files
run: sudo apt-get update && sudo apt-get install -y build-essential liblmdb-dev

- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 2b4c335

Please sign in to comment.