Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- main

jobs:
run-workflow:
name: Run Workflow
release-dev:
name: Release Dev
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup Dagger
uses: dagger/dagger-for-github@v8.2.0
with:
version: v0.20.3
version: v0.20.6
verb: functions
workdir: ./etc/workflow-runtime

Expand All @@ -29,9 +29,7 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run workflow
working-directory: ./etc/scripts/workflows
run: ./release.ts
- run: ./etc/scripts/workflows/release-publish.ts
env:
MODE: dev
GH_TOKEN: ${{ secrets.GH_TOKEN_DEV }}
10 changes: 4 additions & 6 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- v*.*.*

jobs:
run-workflow:
name: Run Workflow
release-prod:
name: Release Prod
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup Dagger
uses: dagger/dagger-for-github@v8.2.0
with:
version: v0.20.3
version: v0.20.6
verb: functions
workdir: ./etc/workflow-runtime

Expand All @@ -29,9 +29,7 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run workflow
working-directory: ./etc/scripts/workflows
run: ./release.ts
- run: ./etc/scripts/workflows/release-publish.ts
env:
MODE: prod
GH_TOKEN: ${{ secrets.GH_TOKEN_PROD }}
10 changes: 4 additions & 6 deletions .github/workflows/release-stg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
- release-*

jobs:
run-workflow:
name: Run Workflow
release-stg:
name: Release Stg
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup Dagger
uses: dagger/dagger-for-github@v8.2.0
with:
version: v0.20.3
version: v0.20.6
verb: functions
workdir: ./etc/workflow-runtime

Expand All @@ -29,9 +29,7 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run workflow
working-directory: ./etc/scripts/workflows
run: ./release.ts
- run: ./etc/scripts/workflows/release-publish.ts
env:
MODE: stg
GH_TOKEN: ${{ secrets.GH_TOKEN_STG }}
32 changes: 32 additions & 0 deletions .github/workflows/workspace-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Workspace Check

on:
push:
branches:
- main

jobs:
workspace-check:
name: Workspace Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Setup Dagger
uses: dagger/dagger-for-github@v8.2.0
with:
version: v0.20.6
verb: functions
workdir: ./etc/workflow-runtime

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24

- name: Install dependencies
run: yarn install

- run: ./etc/scripts/workflows/workspace-check.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Validate PR
name: Workspace Verify

on:
pull_request:
branches:
- main

jobs:
run-workflow:
name: Run Workflow
workspace-verify:
name: Workspace Verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup Dagger
uses: dagger/dagger-for-github@v8.2.0
with:
version: v0.20.3
version: v0.20.6
verb: functions
workdir: ./etc/workflow-runtime

Expand All @@ -29,6 +29,4 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Run workflow
working-directory: ./etc/scripts/workflows
run: ./validate-pr.ts
- run: ./etc/scripts/workflows/workspace-verify.ts
1 change: 1 addition & 0 deletions .moon/toolchains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ rust:
syncToolchainConfig: true
bins:
- trunk@0.21.14
- wasm-bindgen-cli@0.2.118
targets:
- wasm32-unknown-unknown
components:
Expand Down
2 changes: 1 addition & 1 deletion .prototools
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ go = "^1"
moon = "^2"
node = "^24"
yarn = "^4"
rust = "1.90.0"
rust = "1.91.0"

[plugins]
dagger = "source:https://raw.githubusercontent.com/Phault/proto-toml-plugins/main/dagger/plugin.toml"
Expand Down
Loading
Loading