-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (64 loc) · 1.95 KB
/
deploy-to-dev.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Deploy to Development
# Only one workflow in a concurrency group may run at a time
concurrency:
group: development-concurrency
cancel-in-progress: true
on:
release:
types: [created]
push:
branches:
- "main"
paths:
- "src/**"
- "yarn.lock"
- "Dockerfile"
jobs:
trigger-github-deployment:
name: Trigger Github Deployment
runs-on: ubuntu-latest
environment: dev
steps:
- name: Notify
run: echo "Deployment started"
get-or-create-tag:
needs: trigger-github-deployment
name: Get or create tag
outputs:
tag: ${{ steps.get-tag.outputs.tag }}
runs-on: ubuntu-latest
steps:
- id: get-tag
run: |
if echo ${{ github.event_name }} | grep "release"
then
RELEASE_TAG=$(echo ${{ github.event.release.tag_name }})
echo "tag=$RELEASE_TAG" >> "$GITHUB_OUTPUT"
else
SHA_SHORT=$(echo ${{ github.sha }} | cut -c1-8)
echo "tag=$SHA_SHORT" >> "$GITHUB_OUTPUT"
fi
shell: bash
build-and-publish-component:
name: "Build and publish component"
needs: [get-or-create-tag, trigger-github-deployment]
uses: ./.github/workflows/build-and-publish.yml
with:
Registry: ghcr.io
ImageName: ${{ github.repository }}
Environment: dev
# Add dev. prefix for the tags used in dev environment,
# due to the commit hash can be interpreted as an integer if only numbers
# PS: Needs to match deploy.with.Tag
Tag: ${{ needs.get-or-create-tag.outputs.tag }}
secrets: inherit
deploy:
name: Update deployment in Develompent
needs: [build-and-publish-component, trigger-github-deployment, get-or-create-tag]
uses: ./.github/workflows/deploy-to-radix.yml
with:
Environment: dev
VersionTag: "${{ needs.get-or-create-tag.outputs.tag }}"
secrets:
ClientId: ${{ secrets.CLIENT_ID }}
TenantId: ${{ secrets.TENANT_ID }}