FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
libgit2/ci/getcontainer.sh at executable · novalis/libgit2 · GitHub
novalis
/
libgit2
Public
forked from
dturner-tw/libgit2
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
libgit2
/
ci
/
getcontainer.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
51 lines (38 loc) · 1.52 KB
Breadcrumbs
libgit2
/
ci
/
getcontainer.sh
Copy path
File metadata and controls
executable file
·
51 lines (38 loc) · 1.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!
/bin/bash
set
-e
IMAGE_NAME=
$1
DOCKERFILE_PATH=
$2
if
[
"
${IMAGE_NAME}
"
=
"
"
]
;
then
echo
"
usage:
$0
image_name [dockerfile]
"
exit
1
fi
if
[
"
${DOCKERFILE_PATH}
"
=
"
"
]
;
then
DOCKERFILE_PATH=
"
${IMAGE_NAME}
"
fi
if
[
"
${DOCKER_REGISTRY}
"
=
"
"
]
;
then
echo
"
DOCKER_REGISTRY environment variable is unset.
"
echo
"
Not running inside GitHub Actions or misconfigured?
"
exit
1
fi
DOCKER_CONTAINER=
"
${GITHUB_REPOSITORY}
/
${IMAGE_NAME}
"
DOCKER_REGISTRY_CONTAINER=
"
${DOCKER_REGISTRY}
/
${DOCKER_CONTAINER}
"
echo
"
dockerfile=
${DOCKERFILE_PATH}
"
>>
$GITHUB_ENV
echo
"
docker-container=
${DOCKER_CONTAINER}
"
>>
$GITHUB_ENV
echo
"
docker-registry-container=
${DOCKER_REGISTRY_CONTAINER}
"
>>
$GITHUB_ENV
#
Identify the last git commit that touched the Dockerfiles
#
Use this as a hash to identify the resulting docker containers
DOCKER_SHA=
$(
git log -1 --pretty=format:
"
%h
"
--
"
${DOCKERFILE_PATH}
"
)
echo
"
docker-sha=
${DOCKER_SHA}
"
>>
$GITHUB_ENV
DOCKER_REGISTRY_CONTAINER_SHA=
"
${DOCKER_REGISTRY_CONTAINER}
:
${DOCKER_SHA}
"
echo
"
docker-registry-container-sha=
${DOCKER_REGISTRY_CONTAINER_SHA}
"
>>
$GITHUB_ENV
echo
"
docker-registry-container-latest=
${DOCKER_REGISTRY_CONTAINER}
:latest
"
>>
$GITHUB_ENV
exists=
"
true
"
docker login https://
${DOCKER_REGISTRY}
-u
${GITHUB_ACTOR}
-p
${GITHUB_TOKEN}
||
exists=
"
false
"
if
[
"
${exists}
"
!=
"
false
"
]
;
then
docker pull
${DOCKER_REGISTRY_CONTAINER_SHA}
||
exists=
"
false
"
fi
if
[
"
${exists}
"
=
"
true
"
]
;
then
echo
"
docker-container-exists=true
"
>>
$GITHUB_ENV
else
echo
"
docker-container-exists=false
"
>>
$GITHUB_ENV
fi
Back
|
FazBrowse Home
|
New Git URL