forked from AmadeusITGroup/otter
-
Notifications
You must be signed in to change notification settings - Fork 0
131 lines (119 loc) · 4.71 KB
/
main.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
name: Main CI
concurrency:
group: ci-${{ github.ref }}-main
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
on:
push:
branches:
- main
- 'release/*'
pull_request:
branches:
- main
- 'release/*'
merge_group:
types: [checks_requested]
env:
YARN_ENABLE_HARDENED_MODE: 0
jobs:
# Check the integrity of yarn lock
yarn_lock_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./tools/github-actions/setup
env:
YARN_ENABLE_HARDENED_MODE: 1
build:
runs-on: ubuntu-latest
needs: [yarn_lock_check]
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
NX_SKIP_NX_CACHE: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release') }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./tools/github-actions/setup
- uses: ./.github/actions/setup-java
with:
install-jdk: 'true'
- run: yarn build:swagger-gen
- run: yarn build
- uses: ./tools/github-actions/upload-build-output
# version:
# permissions:
# # Needed to publish release on GitHub
# contents: write
# runs-on: ubuntu-latest
# needs: [yarn_lock_check]
# outputs:
# nextVersionTag: ${{ steps.newVersion.outputs.nextVersionTag }}
# isPreRelease: ${{ contains( steps.newVersion.outputs.nextVersionTag, '-' ) || github.event_name == 'pull_request' || github.event_name == 'merge_group'}}
# steps:
# - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
# - uses: ./tools/github-actions/setup
# - name: New Version
# if: github.event_name != 'merge_group'
# id: newVersion
# uses: ./tools/github-actions/new-version
# with:
# defaultBranch: main
# defaultBranchPrereleaseName: prerelease
# releaseBranchRegExp: 'release\/(0|[1-9]\d*)\.(0|[1-9]\d*)(\.0-(?:next|prerelease|rc))?$'
# - name: Create release
# if: github.event_name != 'pull_request' && github.event_name != 'merge_group'
# run: gh release create v${{ steps.newVersion.outputs.nextVersionTag }} --generate-notes ${{ contains( steps.newVersion.outputs.nextVersionTag, '-' ) && '--prerelease' || '' }} --target ${{ github.ref_name }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# checks:
# uses: ./.github/workflows/code-check.yml
# secrets:
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
# needs: [yarn_lock_check]
# with:
# affected: ${{ github.event_name == 'pull_request' }}
# skipNxCache: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release') }}
# it-tests:
# uses: ./.github/workflows/it-tests.yml
# secrets:
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
# needs: [yarn_lock_check, build]
# with:
# skipNxCache: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release') }}
# e2e-tests:
# uses: ./.github/workflows/e2e-tests.yml
# secrets:
# NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
# needs: [yarn_lock_check, build]
# with:
# skipNxCache: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release') }}
# publish-packages:
# uses: ./.github/workflows/publish.yml
# if: ${{ github.event_name != 'pull_request' && github.event_name != 'merge_group' }}
# permissions:
# contents: read
# # Needed to publish with provenance
# id-token: write
# secrets: inherit
# needs: [yarn_lock_check, version, build, checks, it-tests]
# with:
# version: ${{ needs.version.outputs.nextVersionTag }}
# prerelease: ${{ needs.version.outputs.isPreRelease == 'true' }}
# isPullRequest: false
# skipNxCache: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release') }}
# documentation-main:
# secrets: inherit
# needs: [yarn_lock_check, version, build, checks]
# if: ${{ github.event_name != 'pull_request' && github.event_name != 'merge_group' && github.ref_name == 'main' }}
# uses: ./.github/workflows/documentation.yml
# with:
# version: ${{ needs.version.outputs.nextVersionTag }}
# documentation-pr:
# secrets: inherit
# needs: [yarn_lock_check, version]
# if: ${{ (github.event_name == 'pull_request' && github.base_ref == 'main') || github.event_name == 'merge_group' }}
# uses: ./.github/workflows/documentation.yml
# with:
# version: ${{ needs.version.outputs.nextVersionTag }}
# shouldDeploy: false