Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/bump-version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Bump Version

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches:
- main
workflow_dispatch:
inputs:
version:
description: New semver release version.
pull_request: # Only runs a check

jobs:
bump:
uses: IronCoreLabs/workflows/.github/workflows/bump-version.yaml@bump-version-v1
with:
version: ${{ inputs.version }}
release_mode: prerelease
release_prereleases: false
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Rust Release

on:
# https://docs.github.com/en/developers/webhooks-and-events/webhook-events-and-payloads#release
# The Bump Version workflow will make a Github release if it isn't a prerelease version
release:
types:
- created
workflow_dispatch:

jobs:
rust-release:
uses: IronCoreLabs/workflows/.github/workflows/rust-release.yaml@rust-release-v1
secrets: inherit
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "recrypt"
version = "0.16.0"
version = "0.16.1-pre.1"
authors = ["IronCore Labs <info@ironcorelabs.com>"]
readme = "README.md"
license = "AGPL-3.0-only"
Expand Down
Loading