This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
115 lines (100 loc) · 3.29 KB
/
continuous-delivery.yaml
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Continuous Delivery
on:
push:
branches: [main, staging]
env:
NODE_VERSION: "18.x"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 15
# outputs:
# version: ${{ steps.semantic.outputs.new_release_version }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: "yarn"
- name: Install dependencies
run: yarn install
# - name: Get Release Versions
# uses: cycjimmy/semantic-release-action@v3
# id: semantic
# env:
# GITHUB_TOKEN: ${{ secrets.DEVOPSBOT_TOKEN }}
- name: Set up Docker Buildx
# if: steps.semantic.outputs.new_release_version != ''
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
# if: steps.semantic.outputs.new_release_version != ''
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
# if: steps.semantic.outputs.new_release_version != ''
uses: docker/build-push-action@v3
with:
push: true
tags: |
ghcr.io/reservoirprotocol/metadata:latest
ghcr.io/reservoirprotocol/metadata:${{ github.sha }}
# ghcr.io/reservoirprotocol/metadata:${{ steps.semantic.outputs.new_release_version }}
# build-args: |
# VERSION=${{ steps.semantic.outputs.new_release_version }}
# - name: Publish github release
# if: steps.semantic.outputs.new_release_version != ''
# uses: cycjimmy/semantic-release-action@v3
deploy-dev:
name: Deploy to Development
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [build]
environment: dev
# if: github.ref == 'refs/heads/staging' && needs.build.outputs.version != ''
if: github.ref == 'refs/heads/staging'
steps:
- name: Checkout repository k8s-configs
uses: actions/checkout@v3
with:
repository: unevenlabs/k8s-configs
token: ${{ secrets.DEVOPSBOT_TOKEN }}
path: k8s-configs
- name: Deploy to Dev Environment
working-directory: k8s-configs
run: |
./utils/version_update.sh \
./dev/platform/metadata.yaml \
${{ github.sha }} \
metadata
deploy-prod:
name: Deploy to Production
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [build]
environment: prod
# if: github.ref == 'refs/heads/main' && needs.build.outputs.version != ''
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout repository k8s-configs
uses: actions/checkout@v3
with:
repository: unevenlabs/k8s-configs
token: ${{ secrets.DEVOPSBOT_TOKEN }}
path: k8s-configs
- name: Deploy to Prod Environment
working-directory: k8s-configs
run: |
./utils/version_update.sh \
./prod/platform/metadata.yaml \
${{ github.sha }} \
metadata