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 722fd3d
Show file tree
Hide file tree
Showing 2 changed files with 40 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
40 changes: 40 additions & 0 deletions .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: pkg

on:
push:
branches:
- main

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

- name: Download repository
uses: actions/checkout@master

- name: Extract Lync
run: |
ls
mv Lync/ ../temp/
rm -r *
mv -v ../temp/* ./
ls
- name: Compile Lync binary
uses: lando/pkg-action@main
with:
entrypoint: ./index.js
arch: ${{ matrix.arch }}
node-version: ${{ matrix.node-version }}
os: ${{ matrix.os }}

0 comments on commit 722fd3d

Please sign in to comment.