Skip to content

Commit

Permalink
Merge pull request #67 from ShreyB2091/shrey
Browse files Browse the repository at this point in the history
Fixing small bug in extension publish workflow
  • Loading branch information
avikalpg authored Jun 21, 2023
2 parents ab4ee80 + 721de12 commit cccb8d9
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ jobs:
- name: Pack extension
uses: TheDoctor0/zip-release@0.4.1
with:
filename: ./Package.zip
exclusions: '.git/* .vscode/* .github/* *.md'
filename: ./Package.zip
exclusions: '.git/* .vscode/* .github/* *.md'

- name: Publish to Chrome Webstore
uses: SebastienGllmt/chrome-addon@v3
with:
extension: jafgelpkkkopeaefadkdjcmnicgpcncc
zip: ./Package.zip
client-id: ${{ secrets.G_CLIENT_ID }}
client-secret: ${{ secrets.G_CLIENT_SECRET }}
refresh-token: ${{ secrets.G_REFRESH_TOKEN }}
extension: jafgelpkkkopeaefadkdjcmnicgpcncc
zip: ./Package.zip
client-id: ${{ secrets.G_CLIENT_ID }}
client-secret: ${{ secrets.G_CLIENT_SECRET }}
refresh-token: ${{ secrets.G_REFRESH_TOKEN }}

- name: Drop artifacts
uses: actions/upload-artifact@v2
with:
name: 'Chrome Artifacts'
path: ./Package.zip
name: 'Chrome Artifacts'
path: ./Package.zip


0 comments on commit cccb8d9

Please sign in to comment.