Skip to content

Commit d166d71

Browse files
committed
double check
1 parent 1a9cdbd commit d166d71

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/release.yaml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ jobs:
4141
sign:
4242
runs-on: ubuntu-latest
4343
needs: [manifest, bundle]
44-
env:
45-
GH_TOKEN: ${{ github.token }}
4644

4745
# if: |
4846
# github.repository == 'sveltejs/svelte-devtools' &&
@@ -53,17 +51,21 @@ jobs:
5351
- uses: actions/checkout@v4
5452
- uses: pnpm/action-setup@v4
5553
- uses: actions/download-artifact@v4
56-
- run: ls -al extension-${{ github.sha }}
54+
- working-directory: extension-${{ github.sha }}
55+
run: ls -al
5756

58-
# - run: |
59-
# pnpm dlx web-ext sign \
60-
# --channel unlisted \
57+
# - working-directory: extension-${{ github.sha }}
58+
# run: |
59+
# pnpm dlx web-ext sign --channel unlisted \
6160
# --api-key ${{ secrets.WEB_EXT_API_KEY }} \
62-
# --api-secret ${{ secrets.WEB_EXT_API_SECRET }} \
61+
# --api-secret ${{ secrets.WEB_EXT_API_SECRET }}
6362

64-
# - run: | # https://cli.github.com/manual/gh_release_create
63+
# - working-directory: extension-${{ github.sha }}
64+
# env:
65+
# GH_TOKEN: ${{ github.token }}
66+
# run: | # https://cli.github.com/manual/gh_release_create
6567
# gh release create v${{ needs.manifest.outputs.version }} \
66-
# extension-${{ github.sha }}/svelte-devtools.zip \
68+
# svelte-devtools.zip web-ext-artifacts/*.xpi#svelte-devtools.xpi \
6769
# --title ${{ needs.manifest.outputs.version }} \
6870
# --draft --generate-notes --notes '
6971
# Built from ${{ github.event.head_commit.id }} at https://github.com/sveltejs/svelte-devtools/actions/runs/${{ github.run_id }}

0 commit comments

Comments
 (0)