added git config
This commit is contained in:
parent
f296d0b3cb
commit
4db36ed50f
|
@ -24,8 +24,11 @@ COPY package*.json ./
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get -y install git
|
RUN apt-get -y install git
|
||||||
|
RUN git config user.name "Bump Version"
|
||||||
|
RUN git config user.email "gh-action-bump-version@users.noreply.github.com"
|
||||||
RUN npm ci
|
RUN npm ci
|
||||||
|
|
||||||
|
|
||||||
# Copy the rest of your action's code
|
# Copy the rest of your action's code
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue