Skip to content

Commit

Permalink
Update pkg.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hoontee committed Aug 22, 2023
1 parent a2f6c2d commit 7222ec5
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,29 @@ name: pkg
on:
push:
branches:
- main
- main

jobs:
pkg:
runs-on: ubuntu-latest
steps:

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

- name: Extract Lync
run: |
ls
mv Lync/ ../temp/
rm -r *
mv -v ../temp/* ./
ls
- name: Extract Lync
run: |
mv Lync/ ../temp/
rm -r *
mv -v ../temp/* ./
- name: Install Node.js
uses: actions/setup-node@master
- name: Install Node.js
uses: actions/setup-node@master

- name: Install pkg
run: npm install pkg
- name: Install pkg
run: npm install -g pkg

- name: Compile Lync binary
run: |
cd Lync
pkg index.js -t node18-win,node18-macos,node18-linux
- name: Compile Lync binary
run: |
pkg index.js -t node18-win,node18-macos,node18-linux
ls

0 comments on commit 7222ec5

Please sign in to comment.