generated from Templates/Baseline
Compare commits
10 Commits
v1.8.4
...
next-relea
Author | SHA1 | Date | |
---|---|---|---|
b0768038fd | |||
85b33336ea | |||
f59b00b3fc | |||
96234db428 | |||
fd910a4a2c | |||
ecd1d24205 | |||
005983bfe1 | |||
71b6c80eaf | |||
32b7147d11 | |||
93a8dfd1f6 |
@ -5,7 +5,7 @@ when:
|
||||
- ${CI_REPO_DEFAULT_BRANCH}
|
||||
|
||||
variables:
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.0'
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.1'
|
||||
# deployment targets
|
||||
- &publish_repos 'ocram85/arkanum,gitea.ocram85.com/arkanum/arkanum,ghcr.io/ocram85/arkanum,codeberg.org/arkanum/arkanum'
|
||||
# logins for deployment targets
|
||||
|
@ -5,7 +5,7 @@ when:
|
||||
- ${CI_REPO_DEFAULT_BRANCH}
|
||||
|
||||
variables:
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.0'
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.1'
|
||||
# deployment targets
|
||||
- &publish_repos 'ocram85/arkanum-docs,gitea.ocram85.com/arkanum/arkanum-docs'
|
||||
# logins for deployment targets
|
||||
|
22
CHANGELOG.md
22
CHANGELOG.md
@ -1,5 +1,27 @@
|
||||
# Changelog
|
||||
|
||||
## [1.9.1](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.9.1) - 2025-07-03
|
||||
|
||||
### ❤️ Thanks to all contributors! ❤️
|
||||
|
||||
@renovate
|
||||
|
||||
### 🤖 Dependency
|
||||
|
||||
- chore(deps): update dependency prettier to v3.6.2 [[#171](https://gitea.ocram85.com/arkanum/arkanum/pulls/171)]
|
||||
- chore(deps): update woodpeckerci/plugin-docker-buildx docker tag to v6.0.1 [[#183](https://gitea.ocram85.com/arkanum/arkanum/pulls/183)]
|
||||
- chore(deps): update oven/bun docker tag to v1.2.12 [[#176](https://gitea.ocram85.com/arkanum/arkanum/pulls/176)]
|
||||
|
||||
## [1.9.0](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.9.0) - 2025-05-08
|
||||
|
||||
### ❤️ Thanks to all contributors! ❤️
|
||||
|
||||
@OCram85
|
||||
|
||||
### ✨ Features
|
||||
|
||||
- bump version because of 2 skipped code-server releases [[#181](https://gitea.ocram85.com/arkanum/arkanum/pulls/181)]
|
||||
|
||||
## [1.8.4](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.8.4) - 2025-05-08
|
||||
|
||||
### ❤️ Thanks to all contributors! ❤️
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM oven/bun:1.2.9 AS builder
|
||||
FROM oven/bun:1.2.12 AS builder
|
||||
|
||||
ARG CI
|
||||
ARG CI_COMMIT_PULL_REQUEST
|
||||
@ -6,7 +6,11 @@ ARG CI_COMMIT_PULL_REQUEST
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
ENV NODE_ENV=production
|
||||
RUN bun install --frozen-lockfile
|
||||
|
||||
# frozen lockfile cant be used when deps gets updated by renovate
|
||||
#RUN bun install --frozen-lockfile
|
||||
|
||||
RUN bun install
|
||||
RUN bun run --vite docs:build
|
||||
|
||||
FROM caddy:2.10.0-alpine AS prod
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "arkanum-docs",
|
||||
"version": "1.8.3",
|
||||
"version": "1.9.0",
|
||||
"type": "module",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -8,7 +8,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
"prettier": "3.5.2",
|
||||
"prettier": "3.6.2",
|
||||
"rimraf": "6.0.1",
|
||||
"vitepress": "1.6.3"
|
||||
},
|
||||
|
Reference in New Issue
Block a user