Compare commits
31 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 | |||
|
c8e4579ac6
|
|||
| 86c8c7659a | |||
| e9dc641b68 | |||
|
caed076db6
|
|||
| 8d5df03ad5 | |||
| 90eba865cf | |||
| c75e88a6f3 | |||
| 9fb6ded315 | |||
| 28b10a5452 | |||
| 342e639b24 |
+2
-29
@@ -1,10 +1,10 @@
|
||||
include:
|
||||
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
||||
- project: unboundsoftware/ci-templates
|
||||
file: Release.gitlab-ci.yml
|
||||
|
||||
stages:
|
||||
- build
|
||||
- prepare
|
||||
- release
|
||||
|
||||
variables:
|
||||
DOCKER_HOST: tcp://docker:2375/
|
||||
@@ -19,30 +19,3 @@ build:
|
||||
- unset BUILDTOOLS_CONTENT
|
||||
- build
|
||||
- push
|
||||
|
||||
prepare_release:
|
||||
image: node:18
|
||||
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
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "docker"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
open-pull-requests-limit: 20
|
||||
rebase-strategy: none
|
||||
@@ -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 -->
|
||||
+5
-3
@@ -1,6 +1,8 @@
|
||||
FROM node:20
|
||||
FROM node:22.9.0
|
||||
|
||||
ENV PATH=${PATH}:/root/.local/bin
|
||||
|
||||
RUN apt update && \
|
||||
apt install -y python3 python3-pip ruby git && \
|
||||
apt install -y python3 python3-pip ruby ruby-dev git pipx && \
|
||||
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