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
2 changes: 1 addition & 1 deletion .github/workflows/bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Bindings

on:
push:
branches: [develop, sdk-bindings]
branches: [develop]
paths:
- ".github/workflow/bindings.yml"
- "bindings/**"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dprint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Dprint

on:
push:
branches: [develop, sdk-bindings]
branches: [develop]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Lints

on:
push:
branches: [develop, sdk-bindings]
branches: [develop]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pre_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ jobs:
run: cargo install cargo-release --version 0.25.20

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

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

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

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

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

- name: Push commit
run: eval "cargo release push -p ${{inputs.package}} --allow-branch develop,sdk-bindings --no-confirm"
run: eval "cargo release push -p ${{inputs.package}} --allow-branch develop --no-confirm"
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
eval "cargo release publish \
-p $pkg \
--all-features \
--allow-branch develop,sdk-bindings \
--allow-branch develop \
--no-confirm \
--execute"
2 changes: 1 addition & 1 deletion .github/workflows/rustdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: rustdoc

on:
push:
branches: [develop, sdk-bindings]
branches: [develop]
workflow_dispatch:

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Tests

on:
push:
branches: [develop, sdk-bindings]
branches: [develop]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Typos

on:
push:
branches: [develop, sdk-bindings]
branches: [develop]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: WASM

on:
push:
branches: [develop, sdk-bindings]
branches: [develop]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
Expand Down