bitbucket-pipeline
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipelines: | |
branches: | |
master: | |
- step: | |
image: node:8 | |
name: run webpack | |
script: | |
- cd wp-content/themes/wp-demo/assets/src | |
- npm install -g webpack | |
- npm install -g webpack-cli | |
- npm install | |
- webpack | |
- step: | |
image: node:8 | |
trigger: manual | |
name: push all changes to heroku environment | |
script: | |
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git HEAD:master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment