mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-05 20:11:10 +08:00
24 lines
426 B
YAML
24 lines
426 B
YAML
name: Build Pack
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
pack:
|
|
runs-on: ${{matrix.os}}
|
|
strategy:
|
|
matrix:
|
|
os: [ windows-latest, macOS-latest]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install and Pack
|
|
run: |
|
|
npm install
|
|
npm run pack
|
|
- name: Upload file
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: packs
|
|
path: |
|
|
*
|