Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 60d5a7c

Browse files
committedApr 21, 2024·
fix build
1 parent 900237a commit 60d5a7c

File tree

3 files changed

+74
-15
lines changed

3 files changed

+74
-15
lines changed
 

‎.github/create-pr.sh

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#!/bin/sh
2+
3+
set -e
4+
set -x
5+
6+
if [ -z "$INPUT_SOURCE_FOLDER" ]
7+
then
8+
echo "Source folder must be defined"
9+
return -1
10+
fi
11+
12+
if [ $INPUT_DESTINATION_HEAD_BRANCH == "main" ] || [ $INPUT_DESTINATION_HEAD_BRANCH == "master"]
13+
then
14+
echo "Destination head branch cannot be 'main' nor 'master'"
15+
return -1
16+
fi
17+
18+
if [ -z "$INPUT_PULL_REQUEST_REVIEWERS" ]
19+
then
20+
PULL_REQUEST_REVIEWERS=$INPUT_PULL_REQUEST_REVIEWERS
21+
else
22+
PULL_REQUEST_REVIEWERS='-r '$INPUT_PULL_REQUEST_REVIEWERS
23+
fi
24+
25+
CLONE_DIR=$(mktemp -d)
26+
27+
echo "Setting git variables"
28+
export GITHUB_TOKEN=$API_TOKEN_GITHUB
29+
git config --global user.email "$INPUT_USER_EMAIL"
30+
git config --global user.name "$INPUT_USER_NAME"
31+
32+
echo "Cloning destination git repository"
33+
git clone "https://$API_TOKEN_GITHUB@github.com/$INPUT_DESTINATION_REPO.git" "$CLONE_DIR"
34+
35+
echo "Copying contents to git repo"-r $INPUT_USER_NAME
36+
cp -R $INPUT_SOURCE_FOLDER "$CLONE_DIR/$INPUT_DESTINATION_FOLDER"
37+
cd "$CLONE_DIR"
38+
git checkout -b "$INPUT_DESTINATION_HEAD_BRANCH"
39+
40+
echo "Adding git commit"
41+
git add .
42+
if git status | grep -q "Changes to be committed"
43+
then
44+
git commit --message "Update from https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA"
45+
echo "Pushing git commit"
46+
git push -u origin HEAD:$INPUT_DESTINATION_HEAD_BRANCH
47+
echo "Creating a pull request"
48+
gh pr create -t $INPUT_DESTINATION_HEAD_BRANCH \
49+
-b $INPUT_DESTINATION_HEAD_BRANCH \
50+
-B $INPUT_DESTINATION_BASE_BRANCH \
51+
-H $INPUT_DESTINATION_HEAD_BRANCH \
52+
$PULL_REQUEST_REVIEWERS
53+
else
54+
echo "No changes detected"
55+
fi

‎.github/workflows/cd.yaml

+9-10
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121

2222
jobs:
2323
deployment:
24-
name: Deployment
24+
name: Create deployment PR
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
@@ -50,14 +50,13 @@ jobs:
5050
cat ${{ env.DEPLOYMENT_SCRIPTS_REPO }}/${{ env.SERVICE_RESOURCES_FILE }} |\
5151
./hcledit attribute set locals.svc_${{ steps.service-name.outputs.service_name }}_image_version '"${{ inputs.service_image_tag }}"' \
5252
> ${{ env.SERVICE_RESOURCES_FILE }}
53-
- name: Create pull request
54-
uses: paygoc6/action-pull-request-another-repo@v1.0.1
53+
- name: Create deployment pull request
5554
env:
5655
API_TOKEN_GITHUB: ${{ secrets.api_github_token }}
57-
with:
58-
source_folder: "terraform-plans"
59-
destination_repo: ${{ env.DEPLOYMENT_SCRIPTS_REPO }}
60-
destination_base_branch: 'main'
61-
destination_head_branch: cd/${{ inputs.environment }}/${{ github.event.repository.name }}/${{ inputs.service_image_tag }}
62-
user_email: ${{ github.event.pusher.email }}
63-
user_name: ${{ github.actor }}
56+
INPUT_SOURCE_FOLDER: "terraform-plans"
57+
INPUT_DESTINATION_REPO: ${{ env.DEPLOYMENT_SCRIPTS_REPO }}
58+
INPUT_DESTINATION_BASE_BRANCH: "main"
59+
INPUT_DESTINATION_HEAD_BRANCH: cd/${{ inputs.environment }}/${{ github.event.repository.name }}/${{ inputs.service_image_tag }}
60+
INPUT_USER_EMAIL: ${{ github.event.pusher.email }}
61+
INPUT_USER_NAME: ${{ github.actor }}
62+
run: "${GITHUB_WORKSPACE}/.github/create-pr.sh"

‎.github/workflows/main.yaml

+10-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
- '**'
77
tags:
88
- '*'
9-
109
env:
1110
AWS_REGION: us-west-2
11+
NPM_GITHUB_TOKEN: ${{ secrets.API_TOKEN_GITHUB_PRIVATE_PACKAGES_DOWNLOAD }}
1212

1313
jobs:
1414
integration:
@@ -17,11 +17,16 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v3
20+
- name: Use Node.js
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: '16'
2024
- name: Install deps
2125
run: yarn
26+
- name: Lint
27+
run: yarn lint
2228
- name: Build
23-
run: yarn build
24-
29+
run: yarn prisma generate && yarn build
2530
docker-image:
2631
if: ${{ !contains(github.ref, 'heads/dependabot') }}
2732
needs:
@@ -56,14 +61,14 @@ jobs:
5661
ECR_REPOSITORY: ${{ github.event.repository.name }}
5762
IMAGE_TAG: ${{ steps.get-image-tag.outputs.image_tag }}
5863
run: |
59-
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -t $ECR_REGISTRY/$ECR_REPOSITORY:latest .
64+
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -t $ECR_REGISTRY/$ECR_REPOSITORY:latest --build-arg NPM_GITHUB_TOKEN=${{ secrets.API_TOKEN_GITHUB_PRIVATE_PACKAGES_DOWNLOAD }} .
6065
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
6166
docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest
6267
outputs:
6368
image_tag: ${{ steps.get-image-tag.outputs.image_tag }}
6469

6570
cd_production:
66-
# if: ${{ contains(github.ref, 'heads/master') }}
71+
if: ${{ contains(github.ref, 'heads/main') || contains(github.ref, 'fix')}}
6772
needs:
6873
- docker-image
6974
uses: ./.github/workflows/cd.yaml

0 commit comments

Comments
 (0)
Please sign in to comment.