Imaginons que je veux deployer sur npm a chaque fois qu’il y a une modification sur mon projet

name: publish packade to npm
on:
	release:
		types: [created]
jobs: 
	build: 
		

	publish-npm:
// we want to wait the build action
		needs: build

// github package registery
	publish-gpr:
		needs: build