forked from wasmi-labs/wasmi
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename crate to reflect fork, update README, add Makefile
Move workflow files from "soroban-wasmi-v.16" branch over Unfork all crates except for `wasmi`
- Loading branch information
Showing
25 changed files
with
121 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Bump Version | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version to bump to' | ||
required: true | ||
|
||
jobs: | ||
|
||
bump-version: | ||
uses: stellar/actions/.github/workflows/rust-bump-version.yml@main | ||
with: | ||
version: ${{ inputs.version }} | ||
base: soroban-wasmi-v0.31-soroban |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Publish | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
|
||
publish: | ||
uses: stellar/actions/.github/workflows/rust-publish.yml@main | ||
secrets: | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |
Oops, something went wrong.