mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
cleanup
This commit is contained in:
parent
507949c12a
commit
578a1a01ff
1 changed files with 4 additions and 4 deletions
8
.github/workflows/deploy-fleet-website.yml
vendored
8
.github/workflows/deploy-fleet-website.yml
vendored
|
|
@ -47,12 +47,12 @@ jobs:
|
|||
# Compile assets
|
||||
- run: cd website/ && npm run build
|
||||
|
||||
# Commit built assets since Heroku likes deploys to be pushed
|
||||
# Commit built assets locally so we can push them to Heroku below.
|
||||
# (This commit will never be pushed to GitHub- only to Heroku.)
|
||||
- run: cd website/ && git add .www
|
||||
- run: cd website/ && git -c "user.name=Fleetwood" -c "user.email=github@example.com" commit -am 'AUTOMATED COMMIT - Automatically bundling compiled assets as part of deploy, updating the EJS layout and .sailsrc file accordingly.'
|
||||
- run: git add .www
|
||||
- run: git -c "user.name=Fleetwood" -c "user.email=github@example.com" commit -am 'AUTOMATED COMMIT - Automatically bundling compiled assets as part of deploy, updating the EJS layout and .sailsrc file accordingly.'
|
||||
|
||||
# Deploy to Heroku
|
||||
# Deploy to Heroku (by pushing)
|
||||
- run: echo "Deploying branch '${GITHUB_REF##*/}' to Heroku…"
|
||||
- run: git remote -v
|
||||
# - run: cd website/ && git push heroku HEAD:master
|
||||
|
|
|
|||
Loading…
Reference in a new issue