-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (65 loc) · 2.4 KB
/
Copy pathrelease.yaml
File metadata and controls
76 lines (65 loc) · 2.4 KB
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
name: Build release
on:
push:
tags:
- "v*"
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: find . -name 'package-lock.json' -execdir npm ci \;
- name: Run server
run: npm start &
- name: Wait for server to start
run: npx wait-on tcp:8585
- name: Run tests
run: npm run test
build:
name: Build with google cloud
runs-on: ubuntu-latest
env:
PROJECT_ID: ${{ secrets.GCP_BUILD_PROJECT_ID }}
# Extract version tags from tag
steps:
- name: Setup variables
id: variables
run: |
TAG_NAME=${GITHUB_REF/refs\/tags\//}
FULL_V_TAG=$(echo $TAG_NAME | sed -r 's/^v(.+)/\1/')
MINOR_V_TAG=$(echo $FULL_V_TAG | sed -r -e 's/.*-(\w+)/\1/' -e 's/(^[0-9]+\.[0-9]+).*/\1/')
MAJOR_V_TAG=$(echo $MINOR_V_TAG | sed -r -e 's/(^[a-z]+).*/\1/' -e 's/(^[0-9]+).*/\1/')
echo "full_version_tag=$FULL_V_TAG" >> $GITHUB_OUTPUT
echo "minor_version_tag=$MINOR_V_TAG" >> $GITHUB_OUTPUT
echo "major_version_tag=$MAJOR_V_TAG" >> $GITHUB_OUTPUT
- name: Checkout
uses: actions/checkout@v4
- id: auth
uses: google-github-actions/auth@v2
with:
credentials_json: ${{ secrets.GCP_BUILD_SERVICE_ACCOUNT_KEY }}
# Setup gcloud CLI
- uses: google-github-actions/setup-gcloud@v2
# Build and push image to Google Container Registry
- name: Build
run: |-
gcloud builds submit \
--quiet \
--tag "eu.gcr.io/$PROJECT_ID/functions:$GITHUB_SHA"
- name: Tag image
run: |-
gcloud container images add-tag --quiet \
"eu.gcr.io/$PROJECT_ID/functions:$GITHUB_SHA" \
"eu.gcr.io/$PROJECT_ID/functions:${{ steps.variables.outputs.full_version_tag }}"
gcloud container images add-tag --quiet \
"eu.gcr.io/$PROJECT_ID/functions:$GITHUB_SHA" \
"eu.gcr.io/$PROJECT_ID/functions:${{ steps.variables.outputs.minor_version_tag }}"
gcloud container images add-tag --quiet \
"eu.gcr.io/$PROJECT_ID/functions:$GITHUB_SHA" \
"eu.gcr.io/$PROJECT_ID/functions:${{ steps.variables.outputs.major_version_tag }}"