-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 1.11 KB
/
deploy.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
name: Build and Deploy
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: mvn test
deploy:
name: Deploy to Google Cloud Run
runs-on: ubuntu-latest
needs: [test]
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build project
run: mvn package
- name: Authenticate gcloud service account
run: |
gcloud config set project vergetaglines
gcloud config set account [email protected]
echo ${{ secrets.GCLOUD_AUTH }} | base64 --decode > gcloud.json
gcloud auth activate-service-account --key-file=gcloud.json --project=vergetaglines
- name: Submit build to Google Cloud
run: gcloud builds submit --tag gcr.io/vergetaglines/vergetaglines
- name: Deploy to Google Cloud Run
run: gcloud beta run deploy vergetaglines --image gcr.io/vergetaglines/vergetaglines --platform managed --allow-unauthenticated --region us-east1