Compare commits

...

2 Commits

Author SHA1 Message Date
Asher 578b5f22c4
Remove AUR dependency on npm
It pulls a release from GitHub, not npm.
2024-11-06 13:00:40 -09:00
Asher 2c1981bfb9
Fix npm publish
Unlike yarn publish, there is no --non-interactive and you cannot
specify a directory, you have to move into it first.
2024-11-06 12:57:57 -09:00
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,6 @@ jobs:
run: ./ci/steps/brew-bump.sh run: ./ci/steps/brew-bump.sh
aur: aur:
needs: npm
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 10 timeout-minutes: 10
env: env:

View File

@ -142,7 +142,8 @@ main() {
# Since the dev builds are scoped to @coder # Since the dev builds are scoped to @coder
# We pass --access public to ensure npm knows it's not private. # We pass --access public to ensure npm knows it's not private.
npm publish --non-interactive release --tag "$NPM_TAG" --access public cd release
npm publish --tag "$NPM_TAG" --access public
} }
main "$@" main "$@"