Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 81dd124151 | |||
|
62c2c5e1d6
|
|||
|
a1cc6fdfbb
|
|||
| 9c5ca3c78b | |||
| 5d451d76a3 | |||
| 6cfecc7149 | |||
| b685e433c0 | |||
| 841d4ecd1e | |||
| e6d2f63fe7 | |||
| e50b9ef1ed | |||
| 0de279a8f1 | |||
| 81577546c0 | |||
| dac150019e | |||
| 5175004d52 | |||
| 10839be374 | |||
| 9d66aaa796 | |||
| 11e1f81c87 | |||
| 9688c766a4 | |||
|
7a103b4ed6
|
|||
| d776cd8756 | |||
| 19e78110ef |
+2
-29
@@ -1,10 +1,10 @@
|
|||||||
include:
|
include:
|
||||||
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
||||||
|
- project: unboundsoftware/ci-templates
|
||||||
|
file: Release.gitlab-ci.yml
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- prepare
|
|
||||||
- release
|
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
DOCKER_HOST: tcp://docker:2375/
|
DOCKER_HOST: tcp://docker:2375/
|
||||||
@@ -19,30 +19,3 @@ build:
|
|||||||
- unset BUILDTOOLS_CONTENT
|
- unset BUILDTOOLS_CONTENT
|
||||||
- build
|
- build
|
||||||
- push
|
- push
|
||||||
|
|
||||||
prepare_release:
|
|
||||||
image: node:20
|
|
||||||
stage: prepare
|
|
||||||
before_script:
|
|
||||||
- npm install -g conventional-changelog-cli
|
|
||||||
script:
|
|
||||||
- conventional-changelog -p conventionalcommits > ./release.description
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- release.description
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
|
|
||||||
release:
|
|
||||||
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
|
||||||
stage: release
|
|
||||||
needs:
|
|
||||||
- job: prepare_release
|
|
||||||
artifacts: true
|
|
||||||
script:
|
|
||||||
- echo "Running release_job for $TAG"
|
|
||||||
release:
|
|
||||||
tag_name: '$CI_COMMIT_TAG'
|
|
||||||
description: ./release.description
|
|
||||||
rules:
|
|
||||||
- if: $CI_COMMIT_TAG
|
|
||||||
|
|||||||
@@ -0,0 +1,72 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [0.0.10] - 2024-10-05
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Add release flow
|
||||||
|
|
||||||
|
## [0.0.9] - 2024-09-22
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Update prepare_release to use git-cliff for CHANGELOG generation
|
||||||
|
|
||||||
|
## [0.0.8] - 2024-05-20
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Add ruby-dev to Dockerfile for pre-commit installation.
|
||||||
|
|
||||||
|
## [0.0.7] - 2024-05-02
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Update to Node 22
|
||||||
|
|
||||||
|
## [0.0.6] - 2024-04-08
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Add pipx bin-dir to PATH
|
||||||
|
|
||||||
|
## [0.0.4] - 2024-04-06
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Install pre-commit with pipx
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Remove Dependabot config
|
||||||
|
- Update to node 20.9.0
|
||||||
|
|
||||||
|
## [0.0.3] - 2023-06-08
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Add dependabot config
|
||||||
|
|
||||||
|
### Build
|
||||||
|
|
||||||
|
- *(deps)* Bump node from 18 to 20
|
||||||
|
|
||||||
|
## [0.0.2] - 2023-02-22
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Upgrade to Node 18
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Use Docker DinD version from variable
|
||||||
|
|
||||||
|
## [0.0.1] - 2023-01-31
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Initial version
|
||||||
|
|
||||||
|
<!-- generated by git-cliff -->
|
||||||
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
FROM node:20.12.1
|
FROM node:22.9.0
|
||||||
|
|
||||||
ENV PATH=${PATH}:/root/.local/bin
|
ENV PATH=${PATH}:/root/.local/bin
|
||||||
|
|
||||||
RUN apt update && \
|
RUN apt update && \
|
||||||
apt install -y python3 python3-pip ruby git pipx && \
|
apt install -y python3 python3-pip ruby ruby-dev git pipx && \
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
pipx install pre-commit
|
pipx install pre-commit
|
||||||
|
|||||||
Reference in New Issue
Block a user