Skip to content

Commit 2a2af91

Browse files
authored
Dev 2024.0 (#26)
* nanoid * update queries * restructure * refactor * restructure layouts * remove comment * buil * init proton * proton installsed * build * source * proto * release-dev * enable gtm * release-dev script * add dev job
1 parent 005de94 commit 2a2af91

2,703 files changed

Lines changed: 17104 additions & 8222 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy-dev.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy Dev
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
7+
jobs:
8+
deploy-dev:
9+
name: Deploy Dev
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Setup Dagger
15+
uses: dagger/dagger-for-github@v5
16+
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: 20
21+
22+
- name: Install dependencies
23+
run: yarn install
24+
25+
- name: Call script
26+
working-directory: ./scripts/ci
27+
run: ./release-dev.ts
28+
env:
29+
MODE: "dev"
30+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_DEV }}

.github/workflows/publish.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
node_modules/
22
.cache/
3-
public
43
.DS_Store
4+
5+
# Yarn
6+
.yarn/*
7+
!.yarn/cache
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/sdks
12+
!.yarn/versions

.prototools

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node = "^20.0.0"
2+
yarn = "^1.0.0"
3+
go = "~1.21.7"
4+
dagger = "latest"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)