Compare commits
No commits in common. "b5358b68799088763bc1c22689e0b1ee2cb9ae88" and "f74bedd730fc3153a4482bdc7063730c6d4d869f" have entirely different histories.
b5358b6879
...
f74bedd730
|
|
@ -1,28 +0,0 @@
|
||||||
name: Mirror to Gitea
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
- master
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
mirror:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Mirror to Gitea
|
|
||||||
env:
|
|
||||||
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
||||||
GITEA_USERNAME: ${{ secrets.GITEA_USERNAME }}
|
|
||||||
run: |
|
|
||||||
REPO_NAME=$(basename $GITHUB_REPOSITORY)
|
|
||||||
git remote add gitea https://$GITEA_USERNAME:$GITEA_TOKEN@gitea.jeffemmett.com/jeffemmett/$REPO_NAME.git || true
|
|
||||||
git push gitea --all --force
|
|
||||||
git push gitea --tags --force
|
|
||||||
|
|
||||||
|
|
@ -13,7 +13,21 @@ export const metadata: Metadata = {
|
||||||
"Learn about Conviction Voting, a novel continuous decision-making mechanism where votes accumulate weight over time using a halflife algorithm.",
|
"Learn about Conviction Voting, a novel continuous decision-making mechanism where votes accumulate weight over time using a halflife algorithm.",
|
||||||
generator: "v0.app",
|
generator: "v0.app",
|
||||||
icons: {
|
icons: {
|
||||||
icon: "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🗳️</text></svg>",
|
icon: [
|
||||||
|
{
|
||||||
|
url: "/icon-light-32x32.png",
|
||||||
|
media: "(prefers-color-scheme: light)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/icon-dark-32x32.png",
|
||||||
|
media: "(prefers-color-scheme: dark)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/icon.svg",
|
||||||
|
type: "image/svg+xml",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
apple: "/apple-icon.png",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue