Skip to content

Commit cee7549

Browse files
committed
Configure git on build
1 parent 475ce01 commit cee7549

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

.github/workflows/azure-container-webapp.yml

+11
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,24 @@ jobs:
6363
- name: Lowercase the repo name and username
6464
run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
6565

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+
6673
- name: Build and push container image to registry
6774
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
6875
with:
6976
push: true
7077
tags: ghcr.io/${{ env.REPO }}:${{ github.sha }}
7178
file: ./Dockerfile
7279
context: .
80+
build-args: |
81+
GIT_USERNAME=${{ github.actor }}
82+
GIT_EMAIL=${{ env.GIT_EMAIL }}
83+
GIT_TOKEN=${{ secrets.SUBMODULE_GITHUB_TOKEN }}
7384
7485
deploy:
7586
permissions:

Dockerfile

+14-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ ENV PACKAGES \
3131
php81-apache2 \
3232
runit \
3333
nano \
34-
bash
34+
bash \
35+
git
3536

3637
# PHP extensions
3738
ENV PHP_EXTENSIONS \
@@ -81,13 +82,23 @@ ENV BUILDERS \
8182
# This let us joining runs in a single layer.
8283
COPY exclude.list /tmp/exclude.list
8384

85+
# Add build arguments for Git credentials
86+
ARG GIT_USERNAME
87+
ARG GIT_EMAIL
88+
ARG GIT_TOKEN
89+
8490
RUN set -xe \
8591
&& apk add --no-cache --virtual .build-deps $BUILDERS \
8692
&& apk add --no-cache $PACKAGES \
8793
&& apk add --no-cache $PHP_EXTENSIONS \
8894
&& 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
91102
&& git config --global url.https://.insteadOf git:// \
92103
&& git config --global advice.detachedHead false \
93104
&& git clone --depth 1 --single-branch --branch $OJS_VERSION --progress https://github.com/pkp/ojs.git . \

0 commit comments

Comments
 (0)