Skip to content

Commit 66023c8

Browse files
authored
Merge pull request #208 from osmosis-labs/trinity/reset-push-tags
fix: release tags
2 parents f7b7d02 + 2c9a766 commit 66023c8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.cargo/config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[alias]
2+
schema = "run schema"
23
wasm = "build --release --lib --target wasm32-unknown-unknown"
3-
wasm-debug = "build --lib --target wasm32-unknown-unknown"
4-
schema = "run schema"
4+
wasm-debug = "build --lib --target wasm32-unknown-unknown"

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
on:
66
push:
7+
tags:
8+
- '*'
79

810
name: Release artifacts
911

@@ -24,7 +26,7 @@ jobs:
2426
override: true
2527

2628
- name: Build schemas
27-
run: ./devtools/build_schemas.sh
29+
run: ./scripts/build_schemas.sh
2830

2931
# This must go after the other cargo commands, as it writes lots of stuff to
3032
# target/ with root permissions (from docker)

0 commit comments

Comments
 (0)