We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e907ec4 + b626b49 commit 8dced85Copy full SHA for 8dced85
.codebuild/deploy.yml
@@ -5,4 +5,5 @@ env:
5
phases:
6
build:
7
commands:
8
+ - codebuild-breakpoint
9
- source ./shared-scripts.sh && _deploy
.codebuild/release_workflow.yml
@@ -28,6 +28,7 @@ batch:
28
- build_linux
29
- identifier: deploy
30
buildspec: .codebuild/deploy.yml
31
+ debug-session: true
32
depend-on:
33
- test
34
- build_windows
.codebuild/scripts/publish.sh
@@ -1,14 +1,12 @@
1
#!/bin/bash -e
2
3
-if [[ "$CODEBUILD_WEBHOOK_TRIGGER" == "pr/"* ]]; then
4
- BRANCH_NAME=${CODEBUILD_WEBHOOK_BASE_REF##*/}
-fi
-
if [ -z "$BRANCH_NAME" ]; then
echo "BRANCH_NAME is missing"
exit 1
10
else
11
git checkout $BRANCH_NAME
+ git pull
+ git fetch --all
12
yarn install
13
git restore .
14
fi
0 commit comments