-
-
Notifications
You must be signed in to change notification settings - Fork 164
43 lines (33 loc) · 1.07 KB
/
pack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Pack Extension
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Tree
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
- name: Install ZIP
uses: montudor/action-zip@v1
- name: Setup NPM packages
run: npm install
- name: Pack extension
run: npm run build-action
- name: Unzip extension
run: unzip -qq ../OldTwitterChrome.zip -d OldTwitterChrome; unzip -qq ../OldTwitterFirefox.zip -d OldTwitterFirefox
working-directory: ${{ github.workspace }}
- name: Upload for Firefox
uses: actions/[email protected]
with:
name: OldTwitterFirefox
path: ${{ github.workspace }}/OldTwitterFirefox
- name: Upload for Chromium
uses: actions/[email protected]
with:
name: OldTwitterChrome
path: ${{ github.workspace }}/OldTwitterChrome