force rebuild for testing

This commit is contained in:
renzynx 2022-12-25 23:09:08 +07:00
parent 1fa725de37
commit d74eeab09d
3 changed files with 15 additions and 7 deletions

View File

@ -47,11 +47,11 @@ jobs:
context: ./api
file: ./api/Dockerfile
push: true
tags: ghcr.io/renzynx/bliss:latest
tags: ghcr.io/renzynx/bliss:dev
cache-from: type=gha
cache-to: type=gha,mode=max
api_arm64:
api-arm64:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
@ -84,7 +84,7 @@ jobs:
context: ./api
file: ./api/Dockerfile
push: true
tags: ghcr.io/renzynx/bliss:dev
tags: ghcr.io/renzynx/bliss:dev-arm64
cache-from: type=gha
cache-to: type=gha,mode=max
@ -123,7 +123,7 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
web_arm64:
web-arm64:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
@ -154,6 +154,6 @@ jobs:
context: ./web
file: ./web/Dockerfile
push: true
tags: ghcr.io/renzynx/web:dev
tags: ghcr.io/renzynx/web:dev-arm64
cache-from: type=gha
cache-to: type=gha,mode=max

View File

@ -216,7 +216,7 @@ export class UsersService implements IUserService {
}
try {
const avatarHash = md5(generateRandomString(32) + Date.now().toString());
const avatarHash = md5(generateRandomString(16) + Date.now().toString());
const hashedPassword = await argon.hash(password);
const user = await this.prisma.user.create({
data: {

View File

@ -1,8 +1,16 @@
import { NotFoundTitle } from '@pages/404Page';
import Head from 'next/head';
import React from 'react';
const NotFound = () => {
return <NotFoundTitle />;
return (
<>
<Head>
<title>404 - Page Not Found</title>
</Head>
<NotFoundTitle />
</>
);
};
export default NotFound;