Skip to content

Commit 598119e

Browse files
authored
Fix path release script (#30)
1 parent 99acbf1 commit 598119e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/publish_prod.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if [ "$CONT" != "y" ]; then
3838
fi
3939
cd -
4040

41-
# Move into the scripts directory
41+
# Move into the root directory
4242
SCRIPTS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
4343
cd $SCRIPTS_DIR/..
4444

@@ -63,7 +63,7 @@ echo "Checking that you have access to the GovCloud AWS account"
6363
saml2aws login -a govcloud-us1-fed-human-engineering
6464
AWS_PROFILE=govcloud-us1-fed-human-engineering aws sts get-caller-identity
6565

66-
VERSION=$VERSION ./build_binary_and_layer_dockerized.sh
66+
VERSION=$VERSION ./scripts/build_binary_and_layer_dockerized.sh
6767

6868
echo "Signing the layer"
6969
aws-vault exec prod-engineering -- ./scripts/sign_layers.sh prod
@@ -75,7 +75,7 @@ echo "Publishing layers to GovCloud AWS regions"
7575
saml2aws login -a govcloud-us1-fed-human-engineering
7676
AWS_PROFILE=govcloud-us1-fed-human-engineering ./scripts/publish_layers.sh
7777

78-
./build_and_push_docker_image.sh
78+
./scripts/build_and_push_docker_image.sh
7979

8080
echo "Creating tag in the datadog-lambda-extension repository for release on GitHub"
8181
git tag "v$VERSION"

0 commit comments

Comments
 (0)