Skip to content

Commit

Permalink
restore workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
graydon committed Sep 23, 2024
1 parent 67c32af commit b5380ae
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 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 }}

0 comments on commit b5380ae

Please sign in to comment.