typo #90
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |