-
Notifications
You must be signed in to change notification settings - Fork 207
43 lines (33 loc) · 1.1 KB
/
pack.yml
File metadata and controls
43 lines (33 loc) · 1.1 KB
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 ./build/OldTwitterChrome.zip -d ./build/OldTwitterChrome; unzip -qq ./build/OldTwitterFirefox.zip -d ./build/OldTwitterFirefox
working-directory: ${{ github.workspace }}
- name: Upload for Firefox
uses: actions/upload-artifact@v4
with:
name: OldTwitterFirefox
path: ${{ github.workspace }}/build/OldTwitterFirefox
- name: Upload for Chromium
uses: actions/upload-artifact@v4
with:
name: OldTwitterChrome
path: ${{ github.workspace }}/build/OldTwitterChrome