Update chrome-store-upload.yaml to use proper name (#563)

Also add exclude to exclude .git files.
This commit is contained in:
deef
2019-12-24 09:36:57 -06:00
committed by Ilya Grigorik
parent 98d938741d
commit 9b48bfa7c0

View File

@@ -15,14 +15,14 @@ jobs:
- name: zip - name: zip
uses: montudor/action-zip@v0.1.0 uses: montudor/action-zip@v0.1.0
with: with:
args: zip -r ./vscd.zip . -i * args: zip -r ./vscd.zip . -i * -x *.git*
- name: Upload to - name: Upload to
uses: trmcnvn/chrome-addon@v1 uses: trmcnvn/chrome-addon@v1
with: with:
# extension is only necessary when updating an existing addon, # extension is only necessary when updating an existing addon,
# omitting it will create a new addon # omitting it will create a new addon
extension: video-speed-controller extension: "nffaoalbilbmmfgbnbgppjihopabppdk"
zip: vscd.zip zip: vscd.zip
client-id: ${{ secrets.CHROME_CLIENT_ID }} client-id: ${{ secrets.CHROME_CLIENT_ID }}
client-secret: ${{ secrets.CHROME_CLIENT_SECRET }} client-secret: ${{ secrets.CHROME_CLIENT_SECRET }}