Skip to content

Commit

Permalink
Added sea binary generation github action
Browse files Browse the repository at this point in the history
  • Loading branch information
chamorin committed Jul 31, 2023
1 parent 57afb30 commit e98f120
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/sea.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Node Sea Binary Generation
on:
release:
types: [ published ]

env:
LINUX_BINARY_NAME: ${{ github.event.repository.name }}-linux

permissions:
contents: write

jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm i
- run: npm run linux
- uses: softprops/action-gh-release@v1
with:
files: ${{ env.LINUX_BINARY_NAME }}

0 comments on commit e98f120

Please sign in to comment.