generated from Templates/Baseline
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
f59b00b3fc | |||
ecd1d24205 | |||
71b6c80eaf | |||
32b7147d11 | |||
93a8dfd1f6 |
@ -5,7 +5,7 @@ when:
|
|||||||
- ${CI_REPO_DEFAULT_BRANCH}
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.0'
|
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.1'
|
||||||
# deployment targets
|
# deployment targets
|
||||||
- &publish_repos 'ocram85/arkanum,gitea.ocram85.com/arkanum/arkanum,ghcr.io/ocram85/arkanum,codeberg.org/arkanum/arkanum'
|
- &publish_repos 'ocram85/arkanum,gitea.ocram85.com/arkanum/arkanum,ghcr.io/ocram85/arkanum,codeberg.org/arkanum/arkanum'
|
||||||
# logins for deployment targets
|
# logins for deployment targets
|
||||||
|
@ -5,7 +5,7 @@ when:
|
|||||||
- ${CI_REPO_DEFAULT_BRANCH}
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.0'
|
- &build_plugin 'woodpeckerci/plugin-docker-buildx:6.0.1'
|
||||||
# deployment targets
|
# deployment targets
|
||||||
- &publish_repos 'ocram85/arkanum-docs,gitea.ocram85.com/arkanum/arkanum-docs'
|
- &publish_repos 'ocram85/arkanum-docs,gitea.ocram85.com/arkanum/arkanum-docs'
|
||||||
# logins for deployment targets
|
# logins for deployment targets
|
||||||
|
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [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
|
## [1.8.4](https://gitea.ocram85.com/arkanum/arkanum/releases/tag/v1.8.4) - 2025-05-08
|
||||||
|
|
||||||
### ❤️ Thanks to all contributors! ❤️
|
### ❤️ 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
|
||||||
ARG CI_COMMIT_PULL_REQUEST
|
ARG CI_COMMIT_PULL_REQUEST
|
||||||
@ -6,7 +6,11 @@ ARG CI_COMMIT_PULL_REQUEST
|
|||||||
COPY . /app
|
COPY . /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
ENV NODE_ENV=production
|
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
|
RUN bun run --vite docs:build
|
||||||
|
|
||||||
FROM caddy:2.10.0-alpine AS prod
|
FROM caddy:2.10.0-alpine AS prod
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "arkanum-docs",
|
"name": "arkanum-docs",
|
||||||
"version": "1.8.3",
|
"version": "1.9.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/bun": "latest",
|
"@types/bun": "latest",
|
||||||
"prettier": "3.5.2",
|
"prettier": "3.6.2",
|
||||||
"rimraf": "6.0.1",
|
"rimraf": "6.0.1",
|
||||||
"vitepress": "1.6.3"
|
"vitepress": "1.6.3"
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user