Skip to content

Commit

Permalink
Rename crate to reflect fork; update/add README, yml, Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
jayz22 committed Dec 20, 2023
1 parent 8f85a78 commit 86ec3c4
Show file tree
Hide file tree
Showing 25 changed files with 124 additions and 541 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Bump Version

on:
workflow_dispatch:
inputs:
version:
description: 'Version to bump to'
required: true
base:
description: 'Name of branch to open PR against (e.g. soroban-wasmi-v0.31.1)'
required: true

jobs:

bump-version:
uses: stellar/actions/.github/workflows/rust-bump-version.yml@main
with:
version: ${{ inputs.version }}
base: ${{ inputs.base }}
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 86ec3c4

Please sign in to comment.