Merge remote-tracking branch 'origin/master' into feature
This commit is contained in:
commit
b4aa416d40
33
.github/workflows/prod.yml
vendored
33
.github/workflows/prod.yml
vendored
@ -51,11 +51,20 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
trunk build --release
|
trunk build --release
|
||||||
|
|
||||||
- name: upload frontend artifacts
|
- name: commit frontend release build
|
||||||
uses: actions/upload-artifact@v4
|
run: |
|
||||||
with:
|
git config --global user.name "GitHub Action"
|
||||||
name: frontend-artifacts
|
git config --global user.email "actions@github.com"
|
||||||
path: ./frontend/dist
|
git add frontend/dist -f
|
||||||
|
git diff --staged --quiet || (git commit -m "release: frontend build ${{ github.sha }} [skip ci]" && git push)
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# - name: upload frontend artifacts
|
||||||
|
# uses: actions/upload-artifact@v4
|
||||||
|
# with:
|
||||||
|
# name: frontend-artifacts
|
||||||
|
# path: ./frontend/dist
|
||||||
|
|
||||||
- name: run tests
|
- name: run tests
|
||||||
run: |
|
run: |
|
||||||
@ -68,14 +77,14 @@ jobs:
|
|||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: download frontend artifacts
|
# - name: download frontend artifacts
|
||||||
uses: actions/download-artifact@v4
|
# uses: actions/download-artifact@v4
|
||||||
with:
|
# with:
|
||||||
name: frontend-artifacts
|
# name: frontend-artifacts
|
||||||
|
|
||||||
- name: display structure of downloaded files
|
# - name: display structure of downloaded files
|
||||||
run: ls -R
|
# run: ls -R
|
||||||
working-directory: ./frontend/dist
|
# working-directory: ./frontend/dist
|
||||||
|
|
||||||
- uses: shuttle-hq/deploy-action@main
|
- uses: shuttle-hq/deploy-action@main
|
||||||
with:
|
with:
|
||||||
|
4
frontend/dist/index.html
vendored
4
frontend/dist/index.html
vendored
@ -4,7 +4,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>wordl</title>
|
<title>wordl</title>
|
||||||
<link rel="stylesheet" href="/styles-56e395d325eea0a0.css" integrity="sha384-BKXf0WUvwZXMIC1tQftZYg6IGrJLeye6QMBsIJIV/h8FrUIm8CdRg2PVDsWMe+21"/>
|
<link rel="stylesheet" href="/styles-77d352ca8ada1544.css" integrity="sha384-TcEfMwgAp/NQ2Vm5fC1nICxVYrNbD17D8OID3K4KgfAki5VPpBdGA+rzb/tRh/dP"/>
|
||||||
<!-- <link data-trunk href="./assets/favicon.ico" rel="icon" type="image/x-icon"> -->
|
<!-- <link data-trunk href="./assets/favicon.ico" rel="icon" type="image/x-icon"> -->
|
||||||
|
|
||||||
<link rel="manifest" href="public/manifest.json" />
|
<link rel="manifest" href="public/manifest.json" />
|
||||||
@ -13,7 +13,7 @@
|
|||||||
<link rel="preload" href="/wordl-frontend-9a7f2cab90becd72_bg.wasm" crossorigin=anonymous integrity="sha384-WLecfo6mTmR1lCvJrhUSeywdjzxyxlS8Y3QiRhif42+EqDGBW8ObGeJvndmvVEux" as="fetch" type="application/wasm"></head>
|
<link rel="preload" href="/wordl-frontend-9a7f2cab90becd72_bg.wasm" crossorigin=anonymous integrity="sha384-WLecfo6mTmR1lCvJrhUSeywdjzxyxlS8Y3QiRhif42+EqDGBW8ObGeJvndmvVEux" as="fetch" type="application/wasm"></head>
|
||||||
<body class="bg-black text-white">
|
<body class="bg-black text-white">
|
||||||
|
|
||||||
<script type="module" nonce="C6wemXT9bYoLMMwSgt9gzg==">
|
<script type="module" nonce="CsgS7FxA36McqXQQKcueSw==">
|
||||||
import init, * as bindings from '/wordl-frontend-9a7f2cab90becd72.js';
|
import init, * as bindings from '/wordl-frontend-9a7f2cab90becd72.js';
|
||||||
const wasm = await init('/wordl-frontend-9a7f2cab90becd72_bg.wasm');
|
const wasm = await init('/wordl-frontend-9a7f2cab90becd72_bg.wasm');
|
||||||
|
|
||||||
|
40
frontend/dist/public/styles.css
vendored
40
frontend/dist/public/styles.css
vendored
@ -558,26 +558,22 @@ video {
|
|||||||
position: static;
|
position: static;
|
||||||
}
|
}
|
||||||
|
|
||||||
.\!order-first {
|
.mb-12 {
|
||||||
order: -9999 !important;
|
margin-bottom: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.order-last {
|
.mb-4 {
|
||||||
order: 9999;
|
margin-bottom: 1rem;
|
||||||
}
|
|
||||||
|
|
||||||
.mt-4 {
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mt-8 {
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-12 {
|
||||||
|
height: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
.h-16 {
|
.h-16 {
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
}
|
}
|
||||||
@ -598,8 +594,12 @@ video {
|
|||||||
width: 4rem;
|
width: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.w-72 {
|
.w-24 {
|
||||||
width: 18rem;
|
width: 6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.w-full {
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-row {
|
.flex-row {
|
||||||
@ -614,6 +614,14 @@ video {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.justify-end {
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.justify-center {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
.gap-4 {
|
.gap-4 {
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
@ -681,6 +689,10 @@ video {
|
|||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pt-12 {
|
||||||
|
padding-top: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
.text-center {
|
.text-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -558,26 +558,22 @@ video {
|
|||||||
position: static;
|
position: static;
|
||||||
}
|
}
|
||||||
|
|
||||||
.\!order-first {
|
.mb-12 {
|
||||||
order: -9999 !important;
|
margin-bottom: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.order-last {
|
.mb-4 {
|
||||||
order: 9999;
|
margin-bottom: 1rem;
|
||||||
}
|
|
||||||
|
|
||||||
.mt-4 {
|
|
||||||
margin-top: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mt-8 {
|
|
||||||
margin-top: 2rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.h-12 {
|
||||||
|
height: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
.h-16 {
|
.h-16 {
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
}
|
}
|
||||||
@ -598,8 +594,12 @@ video {
|
|||||||
width: 4rem;
|
width: 4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.w-72 {
|
.w-24 {
|
||||||
width: 18rem;
|
width: 6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.w-full {
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-row {
|
.flex-row {
|
||||||
@ -614,6 +614,14 @@ video {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.justify-end {
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.justify-center {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
.gap-4 {
|
.gap-4 {
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
}
|
}
|
||||||
@ -681,6 +689,10 @@ video {
|
|||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pt-12 {
|
||||||
|
padding-top: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
.text-center {
|
.text-center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user