Skip to content

Commit

Permalink
Heroku manages deploys directly
Browse files Browse the repository at this point in the history
  • Loading branch information
pat committed Jan 10, 2025
1 parent 81097fb commit 79e7bdb
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
pull_request:
branches:
- '*'
- "*"
push:
branches:
- main
Expand All @@ -28,8 +28,8 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version-file: '.tool-versions'
cache: "yarn"
node-version-file: ".tool-versions"
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -46,15 +46,3 @@ jobs:
./bin/bootstrap
./bin/rake
./bin/bundle exec rubocop
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: akhileshns/[email protected]
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }}
heroku_email: ${{ secrets.HEROKU_EMAIL }}

0 comments on commit 79e7bdb

Please sign in to comment.