Skip to content

Commit 14f6c64

Browse files
chore: update miden-client version (#227)
* chore: update miden-client version * feat: remove typing * feat: update to 0.14.0-alpha.1 * chore: dockerfile version * chore: msrv * chore: remove bundle.js file * chore: update node dev dep * chore: restore faucet version * chore: update release workflow * chore: update miden-sdk version * chore: update miden-sdk 0.14.0-alpha
1 parent ea6ccb8 commit 14f6c64

File tree

11 files changed

+435
-379
lines changed

11 files changed

+435
-379
lines changed

.github/workflows/publish-crates-dry-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permissions:
55

66
on:
77
push:
8-
branches: [main]
8+
branches: [main, next]
99

1010
jobs:
1111
cargo-publish-dry-run:

.github/workflows/publish-crates.yml

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Cargo Publish (main)
1+
name: Cargo Publish
22

33
permissions:
44
contents: read
@@ -17,23 +17,12 @@ jobs:
1717
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
ref: main
21-
# Ensure the release tag refers to the latest commit on main.
22-
# Compare the commit SHA that triggered the workflow with the HEAD of the branch we just
23-
# checked out (main).
24-
- name: Verify release was triggered from main HEAD
25-
run: |
26-
tag_sha="${{ github.sha }}"
27-
main_sha="$(git rev-parse HEAD)"
28-
29-
echo "Tag points to: $tag_sha"
30-
echo "Current main HEAD is: $main_sha"
20+
ref: ${{ github.event.release.tag_name }}
3121

32-
if [ "$tag_sha" != "$main_sha" ]; then
33-
echo "::error::The release tag was not created from the latest commit on main. Aborting."
34-
exit 1
35-
fi
36-
echo "Release tag matches main HEAD — continuing."
22+
- name: Log release info
23+
run: |
24+
echo "Publishing release ${{ github.event.release.tag_name }}"
25+
echo "Commit: $(git rev-parse HEAD)"
3726
- name: Update Rust toolchain
3827
run: |
3928
rustup update --no-self-update

0 commit comments

Comments
 (0)