Compare commits

...

2 commits

Author SHA1 Message Date
dc9531322a
meta: update versioning format 2024-02-22 06:42:21 +09:00
3b0d540101
fix (backend): undefined reference 2024-02-21 05:32:48 +09:00
4 changed files with 6 additions and 13 deletions

View file

@ -128,7 +128,5 @@ build-image:
--no-cache \
--platform linux/amd64 \
--build-arg "VERSION=$$(version_ci)" \
--tag docker.io/naskya/firefish \
--tag registry.code.naskya.net/naskya/firefish \
--tag "registry.code.naskya.net/naskya/firefish:$$(version_ci | cut -d':' -f2)" \
.

View file

@ -43,15 +43,11 @@ contains() {
}
version() {
UPSTREAM_VERSION=$(pnpm pkg get version | sed -e 's/"//g')
COMMIT_DATE=$(git show --no-patch --pretty='%cs' FETCH_HEAD | sed -e 's/-//g' | cut -c 3-)
COMMIT_HASH_INITIAL=$(printf '%s' "$(git rev-parse FETCH_HEAD)" | cut -c 1-2)
printf '%s+neko:%s.%s' "${UPSTREAM_VERSION}" "${COMMIT_DATE}" "${COMMIT_HASH_INITIAL}"
COMMIT_DATE=$(git show --no-patch --pretty='%cs' FETCH_HEAD | sed -e 's/-//g')
printf '%s+neko' "${COMMIT_DATE}"
}
version_ci() {
UPSTREAM_VERSION=$(grep '"version":' package.json | cut -d '"' -f 4)
COMMIT_DATE=$(git show --no-patch --pretty='%cs' HEAD | sed -e 's/-//g' | cut -c 3-)
COMMIT_HASH_INITIAL=$(printf '%s' "$(git rev-parse HEAD)" | cut -c 1-2)
printf '%s+neko:%s.%s' "${UPSTREAM_VERSION}" "${COMMIT_DATE}" "${COMMIT_HASH_INITIAL}"
COMMIT_DATE=$(git show --no-patch --pretty='%cs' HEAD | sed -e 's/-//g')
printf '%s+neko' "${COMMIT_DATE}"
}

View file

@ -1,7 +1,6 @@
{
"name": "firefish",
"version": "1.0.5-rc",
"codename": "aqua",
"version": "neko",
"repository": {
"type": "git",
"url": "https://code.naskya.net/naskya/firefish"

View file

@ -36,7 +36,7 @@ export default async (ctx: Router.RouterContext) => {
const pinnedNotes = (
await Promise.all(
pinning.map((pinnedNote) =>
this.notesRepository.findOneByOrFail({ id: pinnedNote.noteId }),
Notes.findOneByOrFail({ id: pinnedNote.noteId }),
),
)
).filter(