Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
c8e4579ac6
|
|||
| 86c8c7659a | |||
| e9dc641b68 | |||
|
caed076db6
|
|||
| 8d5df03ad5 | |||
| 90eba865cf | |||
| c75e88a6f3 | |||
| 9fb6ded315 | |||
| 28b10a5452 | |||
| 342e639b24 | |||
| 712375c502 | |||
| 88bfb3caeb |
+5
-5
@@ -21,15 +21,15 @@ build:
|
|||||||
- push
|
- push
|
||||||
|
|
||||||
prepare_release:
|
prepare_release:
|
||||||
image: node:18
|
image: node:20
|
||||||
stage: prepare
|
stage: prepare
|
||||||
before_script:
|
before_script:
|
||||||
- npm install -g conventional-changelog-cli
|
- npm install -g conventional-changelog-cli
|
||||||
script:
|
script:
|
||||||
- echo "DESCRIPTION=$(conventional-changelog -p conventionalcommits)" > variables.env
|
- conventional-changelog -p conventionalcommits > ./release.description
|
||||||
artifacts:
|
artifacts:
|
||||||
reports:
|
paths:
|
||||||
dotenv: variables.env
|
- release.description
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_TAG
|
- if: $CI_COMMIT_TAG
|
||||||
|
|
||||||
@@ -43,6 +43,6 @@ release:
|
|||||||
- echo "Running release_job for $TAG"
|
- echo "Running release_job for $TAG"
|
||||||
release:
|
release:
|
||||||
tag_name: '$CI_COMMIT_TAG'
|
tag_name: '$CI_COMMIT_TAG'
|
||||||
description: '$DESCRIPTION'
|
description: ./release.description
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_TAG
|
- if: $CI_COMMIT_TAG
|
||||||
|
|||||||
+5
-3
@@ -1,6 +1,8 @@
|
|||||||
FROM node:18
|
FROM node:20.12.1
|
||||||
|
|
||||||
|
ENV PATH=${PATH}:/root/.local/bin
|
||||||
|
|
||||||
RUN apt update && \
|
RUN apt update && \
|
||||||
apt install -y python3 python3-pip ruby git && \
|
apt install -y python3 python3-pip ruby git pipx && \
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
pip3 install pre-commit
|
pipx install pre-commit
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"config:recommended"
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user