-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (40 loc) · 1.3 KB
/
deploy-staging.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
name: Publish to dockerhub and perform a deploy on cloud run
on:
push:
branches: ["develop", "staging"]
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: vnguyen/openbeta-media-server:staging
- id: "auth"
name: "Authenticate to Google Cloud"
uses: "google-github-actions/auth@v1"
with:
credentials_json: "${{ secrets.GOOGLE_CLOUD_CREDENTIALS }}"
- id: "deploy"
uses: "google-github-actions/deploy-cloudrun@v1"
with:
service: "staging-media-server"
image: "vnguyen/openbeta-media-server:staging"
env_vars: |
STORAGE_BUCKET=openbeta-staging
APP_VERSION=${{ GITHUB_SHA }}
- name: "Use output"
run: 'curl "${{ steps.deploy.outputs.url }}"'