This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
86 lines (72 loc) · 2.41 KB
/
relay.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
name: Relay
on:
schedule:
- cron: '34 19 * * *'
push:
branches: [main]
tags: ['v*.*.*']
paths:
- '.github/workflows/relay.yaml'
- 'packages/relay/**'
- 'yarn.lock'
pull_request:
branches: [main]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/relay
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install nx
run: yarn global add nx
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@7e0881f8fe90b25e305bbf0309761e9314607e25
with:
cosign-release: 'v1.4.0'
- name: Setup Docker buildx
uses: docker/setup-buildx-action@20111c644724909db5e5afbf25d7de40ddf74f0b
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@70e1ff84cbd75a9e03941a79f21f05f1b03a71bb
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@8d56fe93cf3fd680736a906389438c1ed74d75f7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Build relay
id: nx-build-relay
run: yarn install && nx build relay
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@c5e6528d5ddefc82f682165021e05edf58044bce
with:
context: dist/packages/relay
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Sign the published Docker image
if: ${{ github.event_name != 'pull_request' }}
env:
COSIGN_EXPERIMENTAL: 'true'
run: cosign sign ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}
- uses: superfly/[email protected]
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
with:
args: 'deploy --remote-only --strategy bluegreen --detach dist/packages/relay'