mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-22 09:23:05 +00:00
070d37fe76
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
572 B
YAML
27 lines
572 B
YAML
---
|
|
name: 'review-app'
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
|
|
jobs:
|
|
review_app:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cloning repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Push to dokku
|
|
uses: dokku/github-action@master
|
|
with:
|
|
git_remote_url: 'ssh://dokku@dokku.com/nginx-buildpack'
|
|
# specify `--force` as a flag for git pushes
|
|
git_push_flags: '--force'
|
|
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
|