5 Commits
0.0.0 ... 0.1.0

Author SHA1 Message Date
3aee2ea61b Update version
All checks were successful
Build release image / build (push) Successful in 1m16s
2025-05-20 11:10:30 +03:00
6e6a3b211c Add analytics 2025-05-20 11:08:23 +03:00
f217963770 Update readme 2025-05-20 10:17:22 +03:00
e488bb655b Update docker image tag
All checks were successful
Build release image / build (push) Successful in 1m29s
2025-05-20 10:10:58 +03:00
8e8404ade9 Fix CI image
Some checks failed
Build release image / build (push) Failing after 1m21s
2025-05-20 09:50:54 +03:00
5 changed files with 15 additions and 27 deletions

View File

@ -8,11 +8,6 @@ on:
jobs:
build:
runs-on: ubuntu-22.04
container:
image: git.nicelycomposed.codes/koshyk-io/flutter-gitea-action-image-builder:latest
credentials:
username: ${{ secrets.IMAGE_REGISTRY_USER }}
password: ${{ secrets.IMAGE_REGISTRY_PASSWORD }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
@ -29,19 +24,19 @@ jobs:
working-directory: ${{ gitea.workspace }}
run: |
yarn build
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Registry
uses: docker/login-action@v3
with:
registry: git.nicelycomposed.codes
username: ${{ secrets.IMAGE_REGISTRY_USER }}
password: ${{ secrets.IMAGE_REGISTRY_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
git.nicelycomposed.codes/yehor/www-yevi-org:${{ gitea.ref_name }}
git.nicelycomposed.codes/yehor/www-yevi-org:latest
git.nicelycomposed.codes/yevi.org/www-yevi-org:${{ gitea.ref_name }}
git.nicelycomposed.codes/yevi.org/www-yevi-org:latest

View File

@ -24,18 +24,3 @@ $ yarn build
This command generates static content into the `build` directory and can be served using any static contents hosting service.
### Deployment
Using SSH:
```
$ USE_SSH=true yarn deploy
```
Not using SSH:
```
$ GIT_USER=<Your GitHub username> yarn deploy
```
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

View File

@ -36,6 +36,14 @@ const config = {
locales: ['en'],
},
scripts: [
{
src: 'https://plausible.nicelycomposed.codes/js/script.outbound-links.js',
defer: 'true',
'data-domain': 'yevi.org',
},
],
presets: [
[
'classic',

View File

@ -1,6 +1,6 @@
{
"name": "yevi-org",
"version": "0.0.2",
"version": "0.1.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",

View File

@ -15,6 +15,7 @@
--ifm-color-primary-lightest: #6d266d;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
--ifm-footer-link-hover-color: #b07ab0;
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
@ -27,5 +28,4 @@
--ifm-color-primary-lighter: #c196c1;
--ifm-color-primary-lightest: #d1b2d1;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
}