Skip to content

Commit

Permalink
pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
hoontee committed Aug 11, 2023
1 parent 02c2a65 commit c2cee6b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/Publish-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
- 'Sample Project/**'

jobs:

publish-main:
runs-on: windows-latest
steps:
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: pkg

on:
push:
branches:
- main

jobs:
pkg:
runs-on: ubuntu-latest
strategy:
matrix:
arch:
- x64
- arm64
node-version:
- node19
os:
- win
- macos
steps:

- run: |
ls
- name: Package into Node binary
uses: lando/pkg-action@v2
with:
entrypoint: index.js
arch: ${{ matrix.arch }}
node-version: ${{ matrix.node-version }}
os: ${{ matrix.os }}

0 comments on commit c2cee6b

Please sign in to comment.