-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (58 loc) · 1.68 KB
/
build.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup test database
run: bin/rails db:test:prepare
- name: Run RSpec
run: bin/rails spec
staging-build:
name: Build (staging)
runs-on: ubuntu-latest
needs: test
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Login to Heroku container registry
run: heroku container:login
- name: Pull latest image (staging)
run: heroku container:pull web --app=wednesdayworlds-staging
- name: Build and push image (staging)
run: heroku container:push web --app=wednesdayworlds-staging
- name: Release image (staging)
run: heroku container:release web --app=wednesdayworlds-staging
production-build:
name: Build (production)
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
needs: test
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Login to Heroku container registry
run: heroku container:login
- name: Pull latest image (production)
run: heroku container:pull web --app=wednesdayworlds
- name: Build and push image (production)
run: heroku container:push web --app=wednesdayworlds