-
-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (27 loc) · 1.02 KB
/
main.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
name: ZIP Files
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Files
run: |
mkdir socialswitch-v1.0-chrome
cp chrome/background.js chrome/manifest.json chrome/popup.js chrome/popup.html chrome/support.html chrome/style.css socialswitch-v1.0-chrome/
cp -r chrome/icons/ socialswitch-v1.0-chrome/
mkdir socialswitch-v1.0-firefox
cp firefox/background.js firefox/manifest.json firefox/popup.js firefox/style.css chrome/popup.html chrome/support.html socialswitch-v1.0-firefox/
cp -r chrome/icons/ socialswitch-v1.0-firefox/
- name: Upload Chrome Artifact
uses: actions/upload-artifact@v4
with:
name: socialswitch-v1.0-chrome
path: socialswitch-v1.0-chrome
- name: Upload Firefox Artifact
uses: actions/upload-artifact@v4
with:
name: socialswitch-v1.0-firefox
path: socialswitch-v1.0-firefox