-
-
Notifications
You must be signed in to change notification settings - Fork 7
75 lines (73 loc) · 2.28 KB
/
Copy pathdevelop-api.yaml
File metadata and controls
75 lines (73 loc) · 2.28 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
name: Develop API CI/CD
on:
workflow_dispatch:
push:
paths:
- 'backend/**'
- '!backend/FwLite/**'
- 'frontend/**'
- '.github/workflows/develop-api.yaml'
- '.github/workflows/lexbox-api.yaml'
- '.github/workflows/deploy.yaml'
- '.github/workflows/integration-test-gha.yaml'
- '.github/actions/playwright-tests/**'
- '.github/actions/setup-k8s/**'
- 'deployment/base/lexbox-deployment.yaml'
- 'deployment/base/hg-deployment.yaml'
branches:
- develop
pull_request:
paths:
- 'backend/**'
- '!backend/FwLite/**'
- 'frontend/**'
- '.github/workflows/develop-api.yaml'
- '.github/workflows/lexbox-api.yaml'
- '.github/workflows/deploy.yaml'
- '.github/workflows/integration-test-gha.yaml'
- '.github/actions/playwright-tests/**'
- '.github/actions/setup-k8s/**'
- 'deployment/base/lexbox-deployment.yaml'
- 'deployment/base/hg-deployment.yaml'
branches:
- develop
jobs:
set-version:
name: Set Version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.setVersion.outputs.VERSION }}
steps:
- name: Set Version
id: setVersion
# set version to date in vYYYY-MM-DD-commitSha format
run: |
shortSha=$(echo ${{ github.sha }} | cut -c1-8)
echo "VERSION=v$(date --rfc-3339=date)-$shortSha" >> ${GITHUB_OUTPUT}
build-api:
name: Build API
needs: set-version
permissions:
contents: read
checks: write # publish-unit-test-result-action
packages: write # ghcr.io push
uses: ./.github/workflows/lexbox-api.yaml
with:
version: ${{ needs.set-version.outputs.version }}
deploy-api:
name: Deploy API
if: ${{github.ref == 'refs/heads/develop'}}
needs: [ build-api, set-version ]
uses: ./.github/workflows/deploy.yaml
secrets: inherit
with:
version: ${{ needs.set-version.outputs.version }}
image: 'ghcr.io/sillsdev/lexbox-api'
k8s-environment: develop
deploy-domain: lexbox.dev.languagetechnology.org
integration-test-gha:
name: GHA integration tests
needs: [build-api, set-version]
uses: ./.github/workflows/integration-test-gha.yaml
with:
lexbox-api-tag: ${{ needs.set-version.outputs.version }}