You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: build.ps1
+7-8
Original file line number
Diff line number
Diff line change
@@ -3,14 +3,14 @@ $ErrorActionPreference = "Stop"
3
3
4
4
#set variables to emulate running in the workflow/pipeline
5
5
$REPO_ROOT= git rev-parse --show-toplevel
6
-
$GIT_REPO=$REPO_ROOT|Split-Path-Leaf
7
-
$GIT_TAG="latest-dev"
6
+
$GIT_REPOSITORY=$REPO_ROOT|Split-Path-Leaf
8
7
$GIT_BRANCH=$(git branch --show-current)
9
8
$GIT_COMMIT=$(git rev-parse HEAD)
9
+
$GIT_TAG="latest-dev"
10
10
$GITHUB_WORKFLOW="n/a"
11
11
$GITHUB_RUN_ID=0
12
12
$GITHUB_RUN_NUMBER=0
13
-
$IMAGE_NAME="$($GIT_REPO):$($GIT_TAG)"
13
+
$IMAGE_NAME="$($GIT_REPOSITORY):$($GIT_TAG)"
14
14
#Note: you cannot export a buildx container image into a local docker instance with multiple architecture manifests so for local testing you have to select just a single architecture.
#Note: you cannot export a buildx container image into a local docker instance with multiple architecture manifests so for local testing you have to select just a single architecture.
0 commit comments