Compare commits

...

5 Commits

Author SHA1 Message Date
09634b728b
with image 2022-08-21 16:02:06 +02:00
34b97586e5
without changelog 2022-08-21 15:37:00 +02:00
8e79d68780
change order 2022-08-21 15:36:11 +02:00
e9f3b006dd
with git and changelog 2022-08-21 15:34:10 +02:00
4f644f9bfb
remove plugins 2022-08-21 15:32:14 +02:00
2 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,8 @@
branches:
- "main"
- "next"
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- "@semantic-release/git"

View File

@ -5,9 +5,17 @@ RUN apk add --no-cache openssh-client git
RUN yarn global add semantic-release@18
RUN yarn global add @semantic-release/git @semantic-release/changelog
# Download public key for github.com
RUN mkdir -p -m 0700 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
RUN \
mkdir -p -m 0700 ~/.ssh \
&& ssh-keyscan github.com >> ~/.ssh/known_hosts \
&& ssh-keyscan git.front.kjuulh.io >> ~/.ssh/known_hosts
WORKDIR /src/app/
COPY . .
RUN --mount=type=ssh,id=default semantic-release
#RUN --mount=type=ssh,id=default semantic-release --no-ci
# run as cmd during pipeline, such easier