Compare commits
5 Commits
89f454dde5
...
09634b728b
Author | SHA1 | Date | |
---|---|---|---|
09634b728b | |||
34b97586e5 | |||
8e79d68780 | |||
e9f3b006dd | |||
4f644f9bfb |
@ -1,3 +1,8 @@
|
|||||||
branches:
|
branches:
|
||||||
- "main"
|
- "main"
|
||||||
- "next"
|
|
||||||
|
plugins:
|
||||||
|
- "@semantic-release/commit-analyzer"
|
||||||
|
- "@semantic-release/release-notes-generator"
|
||||||
|
- "@semantic-release/changelog"
|
||||||
|
- "@semantic-release/git"
|
||||||
|
@ -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@18
|
||||||
|
|
||||||
|
RUN yarn global add @semantic-release/git @semantic-release/changelog
|
||||||
|
|
||||||
# Download public key for github.com
|
# 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 . .
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user