Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# Configure registry for GitHub Packages using local .npmrc to avoid npm global config corruption
- run: rm ./.npmrc
- run: |
cat > .npmrc << 'EOF'
cat > .npmrc << EOF
//npm.pkg.github.com/:_authToken=${GH_TOKEN}
@typeform:registry=https://npm.pkg.github.com/
EOF
Expand All @@ -56,7 +56,7 @@ jobs:
- run: git checkout HEAD -- package.json # do not save jarvis dependency to package.json because it is private (the file is committed by semantic-release to bump version)
# Create clean .npmrc with just auth token
- run: |
cat > .npmrc << 'EOF'
cat > .npmrc << EOF
//npm.pkg.github.com/:_authToken=${GH_TOKEN}
EOF
env:
Expand Down
Loading