File tree 2 files changed +25
-3
lines changed
2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -63,13 +63,24 @@ jobs:
63
63
- name : Lowercase the repo name and username
64
64
run : echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
65
65
66
+ - name : Retrieve GitHub user email
67
+ id : get_email
68
+ run : |
69
+ echo "Retrieving email for user: ${{ github.actor }}"
70
+ email=$(curl -s -H "Authorization: token ${{ github.token }}" https://api.github.com/user | jq -r '.email')
71
+ echo "GIT_EMAIL=$email" >> $GITHUB_ENV
72
+
66
73
- name : Build and push container image to registry
67
74
uses : docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
68
75
with :
69
76
push : true
70
77
tags : ghcr.io/${{ env.REPO }}:${{ github.sha }}
71
78
file : ./Dockerfile
72
79
context : .
80
+ build-args : |
81
+ GIT_USERNAME=${{ github.actor }}
82
+ GIT_EMAIL=${{ env.GIT_EMAIL }}
83
+ GIT_TOKEN=${{ secrets.SUBMODULE_GITHUB_TOKEN }}
73
84
74
85
deploy :
75
86
permissions :
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ ENV PACKAGES \
31
31
php81-apache2 \
32
32
runit \
33
33
nano \
34
- bash
34
+ bash \
35
+ git
35
36
36
37
# PHP extensions
37
38
ENV PHP_EXTENSIONS \
@@ -81,13 +82,23 @@ ENV BUILDERS \
81
82
# This let us joining runs in a single layer.
82
83
COPY exclude.list /tmp/exclude.list
83
84
85
+ # Add build arguments for Git credentials
86
+ ARG GIT_USERNAME
87
+ ARG GIT_EMAIL
88
+ ARG GIT_TOKEN
89
+
84
90
RUN set -xe \
85
91
&& apk add --no-cache --virtual .build-deps $BUILDERS \
86
92
&& apk add --no-cache $PACKAGES \
87
93
&& apk add --no-cache $PHP_EXTENSIONS \
88
94
&& apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/v3.18/community/ gnu-libiconv=1.17-r1 \
89
- # Building OJS:
90
- # Configure and download code from git
95
+ # Configure Git with provided credentials
96
+ && git config --global user.name "${GIT_USERNAME}" \
97
+ && git config --global user.email "${GIT_EMAIL}" \
98
+ && git config --global credential.helper store \
99
+ && echo "https://${GIT_USERNAME}:${GIT_TOKEN}@github.com" > ~/.git-credentials \
100
+ # Building OJS:
101
+ # Configure and download code from git
91
102
&& git config --global url.https://.insteadOf git:// \
92
103
&& git config --global advice.detachedHead false \
93
104
&& git clone --depth 1 --single-branch --branch $OJS_VERSION --progress https://github.com/pkp/ojs.git . \
You can’t perform that action at this time.
0 commit comments