Skip to content

Commit

Permalink
add a release workflow and make sure only elligator relases (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwample authored Jun 26, 2024
1 parent a642c8a commit dff823d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 4 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release-plz

permissions:
pull-requests: write
contents: write

on:
push:
branches:
- main

jobs:
release-plz:
name: Release-plz
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
with:
manifest_path: curve25519-elligator2/Cargo.toml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[workspace]
members = [
"curve25519-dalek",
# "curve25519-dalek",
"curve25519-elligator2",
"curve25519-dalek-derive",
"ed25519-dalek",
"x25519-dalek"
# "curve25519-dalek-derive",
# "ed25519-dalek",
# "x25519-dalek"
]
resolver = "2"

Expand Down

0 comments on commit dff823d

Please sign in to comment.