-
Notifications
You must be signed in to change notification settings - Fork 255
56 lines (53 loc) · 1.82 KB
/
server-build.yml
File metadata and controls
56 lines (53 loc) · 1.82 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
name: 'Server Zip Build'
on:
workflow_dispatch:
inputs:
buildType:
type: choice
description: 'Build Type'
required: true
options:
- Testing
- Release
buildVersion:
description: 'Build Version'
required: true
permissions:
id-token: write
contents: write
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Set AWS environment
run: |
echo "AWS_DEFAULT_REGION=us-east-1" >> $GITHUB_ENV
echo "AWS_DEFAULT_OUTPUT=json" >> $GITHUB_ENV
echo "AWS_ROLE_ARN=${{ secrets.STAGE_AWS_GITHUB_OIDC_ROLE_ARN }}" >> $GITHUB_ENV
- name: Configure AWS credentials (OIDC)
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ env.AWS_ROLE_ARN }}
role-session-name: GitHub_to_AWS_via_FederatedOIDC
aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Downloading Packages
run: |
mkdir $HOME/.testsigma_os
aws s3 cp s3://hybrid-staging.testsigma.com/testsigma_os $HOME/.testsigma_os --recursive
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Building
run: |
if [[ "${{ github.event.inputs.buildType }}" == "Testing" ]]; then
bash deploy/installer/build.sh --VERSION=v${{ github.event.inputs.buildVersion }} --PUBLISH_TO_GIT=false
fi
if [[ "${{ github.event.inputs.buildType }}" == "Release" ]]; then
bash deploy/installer/build.sh --VERSION=v${{ github.event.inputs.buildVersion }} --PUBLISH_TO_GIT=true
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}