Skip to content

Commit c6daa5f

Browse files
chore(ci): remove mentions to sdk-bindings branch (#366)
1 parent c1225ad commit c6daa5f

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/bindings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Bindings
22

33
on:
44
push:
5-
branches: [develop, sdk-bindings]
5+
branches: [develop]
66
paths:
77
- ".github/workflow/bindings.yml"
88
- "bindings/**"

.github/workflows/dprint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Dprint
22

33
on:
44
push:
5-
branches: [develop, sdk-bindings]
5+
branches: [develop]
66
pull_request:
77
types: [opened, synchronize, reopened, ready_for_review]
88
workflow_dispatch:

.github/workflows/lints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Lints
22

33
on:
44
push:
5-
branches: [develop, sdk-bindings]
5+
branches: [develop]
66
pull_request:
77
types: [opened, synchronize, reopened, ready_for_review]
88
workflow_dispatch:

.github/workflows/pre_publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ jobs:
4141
run: cargo install cargo-release --version 0.25.20
4242

4343
- name: Dry run publish
44-
run: eval "cargo release -p ${{inputs.package}} --allow-branch develop,sdk-bindings --no-confirm --all-features"
44+
run: eval "cargo release -p ${{inputs.package}} --allow-branch develop --no-confirm --all-features"
4545

4646
- name: Get commits since last tag
4747
run: eval "cargo release changes"
4848

4949
- name: Bump versions
50-
run: eval "cargo release version -p ${{inputs.package}} --allow-branch develop,sdk-bindings --no-confirm ${{inputs.level}}"
50+
run: eval "cargo release version -p ${{inputs.package}} --allow-branch develop --no-confirm ${{inputs.level}}"
5151

5252
- name: Commit packages
53-
run: eval "cargo release commit --allow-branch develop,sdk-bindings --no-confirm"
53+
run: eval "cargo release commit --allow-branch develop --no-confirm"
5454

5555
- name: Tag commit
56-
run: eval "cargo release tag -p ${{inputs.package}} --allow-branch develop,sdk-bindings --no-confirm --tag-prefix '${{inputs.package}}-'"
56+
run: eval "cargo release tag -p ${{inputs.package}} --allow-branch develop --no-confirm --tag-prefix '${{inputs.package}}-'"
5757

5858
- name: Push commit
59-
run: eval "cargo release push -p ${{inputs.package}} --allow-branch develop,sdk-bindings --no-confirm"
59+
run: eval "cargo release push -p ${{inputs.package}} --allow-branch develop --no-confirm"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
eval "cargo release publish \
2424
-p $pkg \
2525
--all-features \
26-
--allow-branch develop,sdk-bindings \
26+
--allow-branch develop \
2727
--no-confirm \
2828
--execute"

.github/workflows/rustdoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: rustdoc
22

33
on:
44
push:
5-
branches: [develop, sdk-bindings]
5+
branches: [develop]
66
workflow_dispatch:
77

88
env:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Tests
22

33
on:
44
push:
5-
branches: [develop, sdk-bindings]
5+
branches: [develop]
66
pull_request:
77
types: [opened, synchronize, reopened, ready_for_review]
88
workflow_dispatch:

.github/workflows/typos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Typos
22

33
on:
44
push:
5-
branches: [develop, sdk-bindings]
5+
branches: [develop]
66
pull_request:
77
types: [opened, synchronize, reopened, ready_for_review]
88

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: WASM
22

33
on:
44
push:
5-
branches: [develop, sdk-bindings]
5+
branches: [develop]
66
pull_request:
77
types: [opened, synchronize, reopened, ready_for_review]
88
workflow_dispatch:

0 commit comments

Comments
 (0)