betches6533 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- package/.gitpod.yml +10 -0
- package/.markdownlint.json +5 -0
- package/LICENSE.md +171 -0
- package/Makefile +34 -0
- package/README.md +92 -23
- package/betches6533/README.md +36 -0
- package/betches6533/package-lock.json +4900 -0
- package/betches6533/package.json +27 -0
- package/cd.yml +16 -0
- package/ci.yml +20 -0
- package/figure-1.svg +1 -0
- package/make.yml +94 -0
- package/metadata.yml +78 -0
- package/mk-pantry-accessible.sh +3 -0
- package/package.json +8 -31
- package/pull_request_template.md +9 -0
- package/release.yml +56 -0
- package/tea-main.zip +0 -0
- package/tea.csl +22 -0
- package/tea.yaml +10 -0
- package/white-paper.md +583 -0
- /package/{.eslintrc.json → betches6533/.eslintrc.json} +0 -0
- /package/{next.config.mjs → betches6533/next.config.mjs} +0 -0
- /package/{postcss.config.js → betches6533/postcss.config.js} +0 -0
- /package/{public → betches6533/public}/next.svg +0 -0
- /package/{public → betches6533/public}/vercel.svg +0 -0
- /package/{src → betches6533/src}/app/favicon.ico +0 -0
- /package/{src → betches6533/src}/app/globals.css +0 -0
- /package/{src → betches6533/src}/app/layout.tsx +0 -0
- /package/{src → betches6533/src}/app/page.tsx +0 -0
- /package/{tailwind.config.ts → betches6533/tailwind.config.ts} +0 -0
- /package/{tsconfig.json → betches6533/tsconfig.json} +0 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
<!-- Please name your pull request title to: "[LANG]: translation" -->
|
2
|
+
<!-- Example: German translation -> [DE]: translation -->
|
3
|
+
|
4
|
+
- [ ] I created a new folder `i18n/[LANG]` for my translated files
|
5
|
+
- [ ] I translated `metadata.yml` file
|
6
|
+
- [ ] I translated `white-paper.md` file
|
7
|
+
- [ ] Tag @teaxyz to enable CI (if not run by default)
|
8
|
+
- [ ] Ensure all CI checks pass
|
9
|
+
- [ ] Review CI-generated PDF artifact to ensure correct generation
|
package/release.yml
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
permissions:
|
4
|
+
contents: write
|
5
|
+
|
6
|
+
on:
|
7
|
+
push:
|
8
|
+
branches: [main]
|
9
|
+
paths: [README.md]
|
10
|
+
|
11
|
+
env:
|
12
|
+
TEA_SECRET: ${{ secrets.TEA_SECRET }}
|
13
|
+
|
14
|
+
jobs:
|
15
|
+
check:
|
16
|
+
runs-on: ubuntu-latest
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v3
|
19
|
+
- run: .github/mk-pantry-accessible.sh ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
|
20
|
+
- uses: teaxyz/setup@v0
|
21
|
+
- id: rev-parse
|
22
|
+
name: did we already publish this version?
|
23
|
+
run: |
|
24
|
+
# fetch tags since actions/checkout is a shallow checkout
|
25
|
+
git fetch --prune --unshallow --tags
|
26
|
+
|
27
|
+
if git show-ref --tags v$VERSION --quiet; then
|
28
|
+
echo "::set-output name=result::cancel"
|
29
|
+
fi
|
30
|
+
|
31
|
+
- uses: andymckay/cancel-action@0.2
|
32
|
+
if: ${{ steps.rev-parse.outputs.result == 'cancel' }}
|
33
|
+
|
34
|
+
make:
|
35
|
+
needs: [check]
|
36
|
+
uses: ./.github/workflows/make.yml
|
37
|
+
with:
|
38
|
+
release: true
|
39
|
+
upload: true
|
40
|
+
secrets: inherit
|
41
|
+
|
42
|
+
release:
|
43
|
+
runs-on: ubuntu-latest
|
44
|
+
needs: [make]
|
45
|
+
steps:
|
46
|
+
- name: Tag Release
|
47
|
+
uses: rickstaa/action-create-tag@v1
|
48
|
+
with:
|
49
|
+
tag: ${{ env.VERSION }}
|
50
|
+
- name: Release
|
51
|
+
uses: softprops/action-gh-release@v1
|
52
|
+
with:
|
53
|
+
tag_name: ${{ env.VERSION }}
|
54
|
+
files: |
|
55
|
+
tea.white-paper.pdf
|
56
|
+
tea.white-paper_??.pdf
|
package/tea-main.zip
ADDED
Binary file
|
package/tea.csl
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<style xmlns="http://purl.org/net/xbiblio/csl" version="1.0" default-locale="en-US">
|
3
|
+
<info>
|
4
|
+
<title>World Wide Web - Tea variant</title>
|
5
|
+
<title-short>World Wide Web - Tea</title-short>
|
6
|
+
<category citation-format="note" />
|
7
|
+
<category field="generic-base" />
|
8
|
+
<updated>2022-05-02T021:57:32+00:00</updated>
|
9
|
+
<rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
|
10
|
+
</info>
|
11
|
+
<citation>
|
12
|
+
<layout>
|
13
|
+
<text variable="url" />
|
14
|
+
</layout>
|
15
|
+
</citation>
|
16
|
+
<bibliography>
|
17
|
+
<layout>
|
18
|
+
<text variable="citation-number" suffix=". " />
|
19
|
+
<text variable="url" />
|
20
|
+
</layout>
|
21
|
+
</bibliography>
|
22
|
+
</style>
|
package/tea.yaml
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# https://tea.xyz/what-is-this-file
|
2
|
+
---
|
3
|
+
version: 1.0.0
|
4
|
+
codeOwners:
|
5
|
+
- '0xd1bfd3bC9de4e7bFfd105cD56BB53F456d6B692c'
|
6
|
+
- '0xf1759760CAb237BC1bd86DAA61536FCa800b82AC'
|
7
|
+
- '0xcA491826f15c58D244028948209928E4fDD64384'
|
8
|
+
- '0x80E6e886Ef243D9B239f5b0DD8Da44bCd45bED71'
|
9
|
+
- '0x65f1c94456087B72128E129476e42270593Fd11C'
|
10
|
+
quorum: 1
|