Fix github token using the wrong key in release workflow

This commit is contained in:
Ajay Ramachandran 2020-03-09 23:10:59 -04:00
parent c0894afff9
commit 50002cfbbd

View file

@ -68,11 +68,11 @@ jobs:
with: with:
args: builds/ChromeExtension.zip args: builds/ChromeExtension.zip
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload to release - name: Upload to release
uses: Shopify/upload-to-release@master uses: Shopify/upload-to-release@master
with: with:
args: builds/FirefoxExtension.zip args: builds/FirefoxExtension.zip
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}