mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-12 18:57:51 -04:00
462cac9af7
# Description of Changes Move anything running on `spacetimedb-runner` to `spacetimedb-new-runner` # API and ABI breaking changes None. # Expected complexity level and risk 1 # Testing - [x] CI passes --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
23 lines
536 B
YAML
23 lines
536 B
YAML
name: Upgrade Version Check
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
merge_group:
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
version_upgrade_check:
|
|
runs-on: spacetimedb-new-runner
|
|
container:
|
|
image: localhost:5000/spacetimedb-ci:latest
|
|
options: --privileged
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Verify that upgrade-version still works
|
|
run: cargo bump-versions 123.456.789 --rust-and-cli --csharp --typescript
|
|
- name: Show diff
|
|
run: git diff HEAD
|
|
|