-
-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e337fe
commit 40ee158
Showing
69 changed files
with
806 additions
and
630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
name: "Auri" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
AURI_GITHUB_TOKEN: ${{secrets.AURI_GITHUB_TOKEN}} | ||
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}} | ||
AURI_GITHUB_TOKEN: ${{secrets.AURI_GITHUB_TOKEN}} | ||
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}} | ||
|
||
jobs: | ||
auri: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: setup actions | ||
uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.5.1 | ||
registry-url: https://registry.npmjs.org | ||
- name: install dependencies | ||
run: | | ||
npm i -g pnpm | ||
pnpm install --no-frozen-lockfile | ||
- name: publish | ||
run: pnpm exec auri publish | ||
- name: prepare | ||
run: pnpm exec auri prepare | ||
auri: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: setup actions | ||
uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.5.1 | ||
registry-url: https://registry.npmjs.org | ||
- name: install dependencies | ||
run: | | ||
npm i -g pnpm | ||
pnpm install --no-frozen-lockfile | ||
- name: publish | ||
run: pnpm exec auri publish | ||
- name: prepare | ||
run: pnpm exec auri prepare |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
name: "Publish docs" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_PAGES_API_TOKEN}} | ||
CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_PAGES_API_TOKEN}} | ||
|
||
jobs: | ||
publish-docs: | ||
name: Publish docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: setup actions | ||
uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.5.1 | ||
registry-url: https://registry.npmjs.org | ||
- name: install malta | ||
working-directory: docs | ||
run: | | ||
curl -o malta.tgz -L https://github.com/pilcrowonpaper/malta/releases/latest/download/linux-amd64.tgz | ||
tar -xvzf malta.tgz | ||
- name: build | ||
working-directory: docs | ||
run: ./linux-amd64/malta build | ||
- name: install wrangler | ||
run: npm i -g wrangler | ||
- name: deploy | ||
run: wrangler pages deploy docs/dist --project-name lucia --branch main | ||
publish-docs: | ||
name: Publish docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: setup actions | ||
uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.5.1 | ||
registry-url: https://registry.npmjs.org | ||
- name: install malta | ||
working-directory: docs | ||
run: | | ||
curl -o malta.tgz -L https://github.com/pilcrowonpaper/malta/releases/latest/download/linux-amd64.tgz | ||
tar -xvzf malta.tgz | ||
- name: build | ||
working-directory: docs | ||
run: ./linux-amd64/malta build | ||
- name: install wrangler | ||
run: npm i -g wrangler | ||
- name: deploy | ||
run: wrangler pages deploy docs/dist --project-name lucia --branch main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
name: "Publish v2 docs" | ||
on: | ||
push: | ||
branches: | ||
- v2 | ||
push: | ||
branches: | ||
- v2 | ||
|
||
env: | ||
CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_PAGES_API_TOKEN}} | ||
CLOUDFLARE_API_TOKEN: ${{secrets.CLOUDFLARE_PAGES_API_TOKEN}} | ||
|
||
jobs: | ||
publish-docs: | ||
name: Publish docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: setup actions | ||
uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.5.1 | ||
registry-url: https://registry.npmjs.org | ||
- name: Install PNPM | ||
run: npm i -g pnpm | ||
- name: Install dependencies | ||
run: pnpm i | ||
- name: Build | ||
working-directory: documentation | ||
run: pnpm build | ||
- name: Install wrangler | ||
run: npm i -g wrangler | ||
- name: deploy | ||
working-directory: documentation | ||
run: wrangler pages deploy dist --project-name lucia-v2 --branch v2 | ||
publish-docs: | ||
name: Publish docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: setup actions | ||
uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.5.1 | ||
registry-url: https://registry.npmjs.org | ||
- name: Install PNPM | ||
run: npm i -g pnpm | ||
- name: Install dependencies | ||
run: pnpm i | ||
- name: Build | ||
working-directory: documentation | ||
run: pnpm build | ||
- name: Install wrangler | ||
run: npm i -g wrangler | ||
- name: deploy | ||
working-directory: documentation | ||
run: wrangler pages deploy dist --project-name lucia-v2 --branch v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.