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: |
|
||||
trunk build --release
|
||||
|
||||
- name: upload frontend artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: frontend-artifacts
|
||||
path: ./frontend/dist
|
||||
- name: commit frontend release build
|
||||
run: |
|
||||
git config --global user.name "GitHub Action"
|
||||
git config --global user.email "actions@github.com"
|
||||
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
|
||||
run: |
|
||||
@ -68,14 +77,14 @@ jobs:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: download frontend artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: frontend-artifacts
|
||||
# - name: download frontend artifacts
|
||||
# uses: actions/download-artifact@v4
|
||||
# with:
|
||||
# name: frontend-artifacts
|
||||
|
||||
- name: display structure of downloaded files
|
||||
run: ls -R
|
||||
working-directory: ./frontend/dist
|
||||
# - name: display structure of downloaded files
|
||||
# run: ls -R
|
||||
# working-directory: ./frontend/dist
|
||||
|
||||
- uses: shuttle-hq/deploy-action@main
|
||||
with:
|
||||
|
4
frontend/dist/index.html
vendored
4
frontend/dist/index.html
vendored
@ -4,7 +4,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<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 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>
|
||||
<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';
|
||||
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;
|
||||
}
|
||||
|
||||
.\!order-first {
|
||||
order: -9999 !important;
|
||||
.mb-12 {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.order-last {
|
||||
order: 9999;
|
||||
}
|
||||
|
||||
.mt-4 {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.mt-8 {
|
||||
margin-top: 2rem;
|
||||
.mb-4 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.h-12 {
|
||||
height: 3rem;
|
||||
}
|
||||
|
||||
.h-16 {
|
||||
height: 4rem;
|
||||
}
|
||||
@ -598,8 +594,12 @@ video {
|
||||
width: 4rem;
|
||||
}
|
||||
|
||||
.w-72 {
|
||||
width: 18rem;
|
||||
.w-24 {
|
||||
width: 6rem;
|
||||
}
|
||||
|
||||
.w-full {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
@ -614,6 +614,14 @@ video {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.justify-end {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.justify-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.gap-4 {
|
||||
gap: 1rem;
|
||||
}
|
||||
@ -681,6 +689,10 @@ video {
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
.pt-12 {
|
||||
padding-top: 3rem;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -558,26 +558,22 @@ video {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.\!order-first {
|
||||
order: -9999 !important;
|
||||
.mb-12 {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.order-last {
|
||||
order: 9999;
|
||||
}
|
||||
|
||||
.mt-4 {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.mt-8 {
|
||||
margin-top: 2rem;
|
||||
.mb-4 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.h-12 {
|
||||
height: 3rem;
|
||||
}
|
||||
|
||||
.h-16 {
|
||||
height: 4rem;
|
||||
}
|
||||
@ -598,8 +594,12 @@ video {
|
||||
width: 4rem;
|
||||
}
|
||||
|
||||
.w-72 {
|
||||
width: 18rem;
|
||||
.w-24 {
|
||||
width: 6rem;
|
||||
}
|
||||
|
||||
.w-full {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
@ -614,6 +614,14 @@ video {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.justify-end {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.justify-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.gap-4 {
|
||||
gap: 1rem;
|
||||
}
|
||||
@ -681,6 +689,10 @@ video {
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
.pt-12 {
|
||||
padding-top: 3rem;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user