-
-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (27 loc) · 988 Bytes
/
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 File
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 popup.html support.html style.css socialswitch-v1.0-chrome/
cp -r icons/ socialswitch-v1.0-chrome/
mkdir socialswitch-v1.0-firefox
cp firefox/background.js firefox/manifest.json firefox/popup.js popup.html support.html style.css socialswitch-v1.0-firefox/
cp -r 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