#publish a package
1 messages · Page 1 of 1 (latest)
Currently you should continue using npm for this
I'm not aware of a way to do this without setup-node
I write a simple tool do this.
https://github.com/oven-sh/bun/issues/1976#issuecomment-1766175898
It reuse libnpmpublish, but with config from bunfig.toml.
example:
https://github.com/innoai-tech/vuekit/blob/main/Makefile#L45-L46
Makefile — (L44-L46)
pub:
$(BUNX) bunpublish
doesn't the setup-bun gh action also use node anyway (for setup) Edit: this is old thread 
should I use another env variable?
add some timer between requests
or wait until one is done before another
I just run bun x bunpublish, no extra requests. I tried to wait for 5s before publishing, but it's still not working
it's spamming requests somehow
You don't need node-setup if you're using ubuntu in actions since node comes preinstalled
oh thanks