Skip to content

Commit

Permalink
Fix run.sh and ci cron job
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaaano committed Apr 26, 2021
1 parent b2ef026 commit 8374a32
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/quarkus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ on:
- '*.sh'
- '*.png'
schedule:
- cron: "0 0 * * *"
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
- cron: '30 1 * * *'

# permissions:
# packages: none # Overriden by package 'Actions access'.
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sleep 9

docker-compose run --rm --name liquibase liquibase

APP_IMAGE=$1 docker-compose up --detach app
APP_IMAGE=${1:-ghcr.io/juliaaano/quarkus:latest} docker-compose up --detach app

docker-compose ps

Expand Down

0 comments on commit 8374a32

Please sign in to comment.