Skip to content

Commit

Permalink
chore: fix some release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Feb 28, 2020
1 parent e936a13 commit 1e1ae92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ jobs:
npm test
- name: Install Terraform
uses: little-core-labs/install-terraform@master
- name: Terraform version
run: |
terraform version
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
tmp_modules
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"release": "git push --follow-tags && gh-release",
"version": "run-s version:*",
"version:1-changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"version:2-cleandeps": "mv node_modules tmp_modules && npm i --only=prod && git add node_modules --force"
"version:2-cleandeps": "mv node_modules tmp_modules && npm i --only=prod && git add node_modules --force",
"postversion": "rm -rf node_modules && mv tmp_modules node_modules"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 1e1ae92

Please sign in to comment.