added git config

This commit is contained in:
phips28 2019-10-26 21:19:18 +02:00
parent f296d0b3cb
commit 4db36ed50f
1 changed files with 3 additions and 0 deletions

View File

@ -24,8 +24,11 @@ COPY package*.json ./
# Install dependencies
RUN apt-get update
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
# Copy the rest of your action's code
COPY . .