Skip to content

Update depoy.yml

Update depoy.yml #3

Workflow file for this run

name: Deploy Heroku

Check failure on line 1 in .github/workflows/depoy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/depoy.yml

Invalid workflow file

invalid `cron` attribute "0 7 9 9 9"
on:
schedule:
- cron: "0 7 9 9 9"
jobs:
heroku:
runs-on: ubuntu-latest
steps:
- name: "Check out Git repository"
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac #v4.0.0
- name: "Set Heroku app & branch for ${{ github.ref }}"
run: |
echo $GITHUB_REF
if [ "$GITHUB_REF" == "refs/heads/master" ]; then
echo "HEROKU_APP=" >> $GITHUB_ENV
echo "HEROKU_BRANCH=master" >> $GITHUB_ENV
fi
echo "HEROKU_BRANCH=master" >> $GITHUB_ENV
- name: "Deploy ${{ github.ref }} to Heroku"
uses: akhileshns/heroku-deploy@9fd0f9faae4aa93a38d6f5e25b9128589f1371b0 #v3.12.14
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: "dsomm"
heroku_email: [email protected]
branch: ${{ env.HEROKU_BRANCH }}
usedocker: true