Skip to content

Commit

Permalink
fix: try checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
cadomac committed Aug 31, 2023
1 parent 15d4a71 commit e653d40
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/update-chrome-ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
EXTENSION_ID: <extension id her>

steps:
- name: Checkout
uses: actions/checkout@v2

- uses: actions/setup-node@v2-beta
with:
node-version: "16.10"
Expand All @@ -57,5 +60,5 @@ jobs:
- name: Upload step
run: |-
chrome-webstore-upload upload --source chrome-extension-${{ github.sha }}.zip --extension-id ${{ env.EXTENSION_ID }} --client-id ${{ secrets.CI_GOOGLE_CLIENT_ID }} --client-secret ${{ secrets.CI_GOOGLE_CLIENT_SECRET }} --refresh-token ${{ secrets.CI_GOOGLE_REFRESH_TOKEN }}
chrome-webstore-upload upload --source chrome-extension-${{ github.event.pull_request.head.sha }}.zip --extension-id ${{ env.EXTENSION_ID }} --client-id ${{ secrets.CI_GOOGLE_CLIENT_ID }} --client-secret ${{ secrets.CI_GOOGLE_CLIENT_SECRET }} --refresh-token ${{ secrets.CI_GOOGLE_REFRESH_TOKEN }}
--auto-publish

0 comments on commit e653d40

Please sign in to comment.