You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
174 B

5 years ago
  1. workflow "publish on release" {
  2. on = "push"
  3. resolves = ["publish"]
  4. }
  5. action "publish" {
  6. uses = "actions/npm@master"
  7. args = "publish"
  8. secrets = ["NPM_AUTH_TOKEN"]
  9. }