We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remote: Pushed to branch other than [main, master], skipping build.
I'm seeing this in my Github Action output after updating to v4:
STEP: Adding Remote - Success STEP: Adding Configuration Variables from env and envfile - Success remote: Pushed to branch other than [main, master], skipping build. To https://git.heroku.com/myapp-production.git 5f84f2f7..62b983be main -> refs/head/main STEP: Deploying - Success default: PASSED Application is running (0.000s) STEP: Performing HealthCheck - Success
This is (basically) what my deployment workflow step looks like:
deploy-production: needs: [test, lint, deploy-staging] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Deploy Production uses: akhileshns/heroku-deploy@v4 with: heroku_app_name: "myapp-production" heroku_email: "<my email>" heroku_api_key: "${{secrets.HEROKU_API_KEY}}" healthcheck: "https://myapp.com/okcomputer" delay: 20 rollbackonhealthcheckfailed: true
Rolling back to uses: akhileshns/[email protected] with otherwise the same configuration above works as expected.
uses: akhileshns/[email protected]
The text was updated successfully, but these errors were encountered:
Also facing the same problem switching from 3.13.15 to 4
deploy: runs-on: ubuntu-latest concurrency: production-deploy steps: - uses: actions/checkout@v4 - uses: akhileshns/heroku-deploy@v4 with: heroku_email: ${{ secrets.HEROKU_DEPLOY_USER }} heroku_api_key: ${{ secrets.HEROKU_DEPLOY_KEY }} heroku_app_name: "myapp-production"
and also found rolling back to uses: akhileshns/[email protected] with otherwise the same configuration above works as expected.
Sorry, something went wrong.
seeing same issue
It looks like v4 hasn't been published yet... for some reason dependabot is picking this version up wrongly
No branches or pull requests
I'm seeing this in my Github Action output after updating to v4:
This is (basically) what my deployment workflow step looks like:
Rolling back to
uses: akhileshns/[email protected]
with otherwise the same configuration above works as expected.The text was updated successfully, but these errors were encountered: