Skip to content

Commit

Permalink
Rename crate to reflect fork, update README, add Makefile
Browse files Browse the repository at this point in the history
Move workflow files from "soroban-wasmi-v.16" branch over

Unfork all crates except for `wasmi`
  • Loading branch information
jayz22 committed Sep 11, 2023
1 parent 983ef37 commit 0a15067
Show file tree
Hide file tree
Showing 25 changed files with 121 additions and 543 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/bump-version.yml
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
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
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 }}
Loading

0 comments on commit 0a15067

Please sign in to comment.