We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5100a commit 5d3832dCopy full SHA for 5d3832d
.github/workflows/deploy-packages.yml
@@ -9,6 +9,10 @@ jobs:
9
deploy-packages:
10
name: Packages
11
runs-on: ubuntu-latest
12
+ permissions:
13
+ id-token: write
14
+ contents: write
15
+ pull-requests: write
16
steps:
17
- uses: actions/checkout@v4
18
with:
@@ -35,6 +39,8 @@ jobs:
35
39
- name: Upload VSIX to Package-Specific Release
36
40
if: steps.changesets.outputs.published == 'true'
37
41
shell: bash
42
+ env:
43
+ GITHUB_TOKEN: ${{ github.token }}
38
44
run: |
45
PACKAGE_NAME="urlspec-vscode-extension"
46
VERSION=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r ".[] | select(.name == \"$PACKAGE_NAME\") | .version")
@@ -50,5 +56,3 @@ jobs:
50
56
else
51
57
echo "No update for $PACKAGE_NAME in this release."
52
58
fi
53
- env:
54
- GITHUB_TOKEN: ${{ github.token }}
0 commit comments