Skip to content

Commit

Permalink
Merge pull request #133 from Kuadrant/crate-v0.3.0-rc1
Browse files Browse the repository at this point in the history
Crate v0.3.0 rc1
  • Loading branch information
alexsnaps authored Oct 21, 2022
2 parents ae9220a + a139d9c commit 2062c2b
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Release crate

on:
workflow_dispatch:
inputs:
version:
description: "version (no `v` prefix)"
required: true
default: "1.0.0"

jobs:
publish:
name: Publish Limitador crate to crates.io
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: crate-v${{ github.event.inputs.version }}
- name: Build
run: cargo build --verbose --release
- name: Check
run: cargo fmt --all -- --check && cargo clippy -- -D warnings
- name: Run tests
run: cargo test --verbose
- name: Publish
if: ${{ success() }}
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p limitador --dry-run
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/limitador.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added default.profraw
Binary file not shown.
Binary file added limitador-server/default.profraw
Binary file not shown.

0 comments on commit 2062c2b

Please sign in to comment.