forked from l2beat/l2beat
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (37 loc) · 1.25 KB
/
deploy-update-monitor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Deploy update monitor
concurrency:
group: static
permissions: {}
on:
schedule:
- cron: "45 * * * *"
jobs:
deploy-update-monitor:
name: Deploy update monitor
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Install heroku CLI
run: curl https://cli-assets.heroku.com/install-ubuntu.sh | sh
- name: Login to heroku container registry
uses: docker/login-action@v3
with:
username: "_"
password: ${{ secrets.HEROKU_TOKEN }}
registry: registry.heroku.com
- name: Build and publish containers
uses: docker/build-push-action@v5
with:
push: true
file: Dockerfile.backend
tags: |
registry.heroku.com/${{ secrets.HEROKU_UPDATE_MONITOR_DEV }}/web
registry.heroku.com/${{ secrets.HEROKU_UPDATE_MONITOR_PROD }}/web
- name: Release published containers
run: |
heroku container:release -a ${{ secrets.HEROKU_UPDATE_MONITOR_DEV }} -v web
heroku container:release -a ${{ secrets.HEROKU_UPDATE_MONITOR_PROD }} -v web
env:
HEROKU_ORGANIZATION: ${{ vars.HEROKU_ORG }}
HEROKU_API_KEY: ${{ secrets.HEROKU_TOKEN }}