deploy-notify-slack 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deploy-notify-slack",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Send Slack notification about deploy with version comments",
5
5
  "main": "notify.js",
6
6
  "scripts": {
@@ -1,16 +0,0 @@
1
- image: node:16-alpine
2
-
3
- pipelines:
4
- default:
5
- # - step:
6
- # name: Build and Test
7
- # script:
8
- # - npm install
9
- # - npm test
10
- - step:
11
- name: Publish
12
- deployment: production
13
- script:
14
- - pipe: atlassian/npm-publish:0.2.0
15
- variables:
16
- NPM_TOKEN: $NPM_TOKEN
package/tag-deploy.sh DELETED
@@ -1,5 +0,0 @@
1
- #!/bin/bash
2
-
3
- VERSION=$(npm run version --silent)
4
- git tag -a $VERSION -m "new version"
5
- git push origin $VERSION