Skip to content

fix: update jwk endpoint, add test (#797) #575

fix: update jwk endpoint, add test (#797)

fix: update jwk endpoint, add test (#797) #575

Workflow file for this run

name: publish crates
on:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
# Disable incremental compilation.
#
# Incremental compilation is useful as part of an edit-build-test-edit cycle,
# as it lets the compiler avoid recompiling code that hasn't changed. However,
# on CI, we're not making small edits; we're almost always building the entire
# project from scratch. Thus, incremental compilation on CI actually
# introduces *additional* overhead to support making future builds
# faster...but no future builds will ever occur in any given CI environment.
#
# See https://matklad.github.io/2021/09/04/fast-rust-builds.html#ci-workflow
# for details.
CARGO_INCREMENTAL: 0
# Allow more retries for network requests in cargo (downloading crates) and
# rustup (installing toolchains). This should help to reduce flaky CI failures
# from transient network timeouts or other issues.
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
# Don't emit giant backtraces in the CI logs.
RUST_BACKTRACE: short
jobs:
publish:
name: Publish to crates.io
runs-on: ubuntu-latest
strategy:
matrix:
package:
- fastcrypto-derive
- fastcrypto
- fastcrypto-zkp
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1
- name: Install Rust toolchain
uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f # pin@v1.0.7
with:
profile: minimal
toolchain: stable
override: true
- id: check
run: |
set +e
./scripts/is_version_already_uploaded.sh ${{ matrix.package }}
export EXIT_CODE="$?"
set -e
if [[ "$EXIT_CODE" == "7" ]]; then
echo '::set-output name=is_new_version::no'
elif [[ "$EXIT_CODE" == "0" ]]; then
echo '::set-output name=is_new_version::yes'
else
# Unexpected outcome, indicates a bug.
exit "$EXIT_CODE"
fi
# Disabled when API feels more stable
# - name: Check semver
# # Only run the semver script if the version changed, otherwise it errors out
# if: steps.check.outputs.is_new_version == 'yes'
# uses: obi1kenobi/cargo-semver-checks-action@v1
# with:
# crate-name: ${{ matrix.package }}
# version-tag-prefix: ${{ matrix.package }}-v
- name: Tag the version
if: steps.check.outputs.is_new_version == 'yes'
run: |
set -euxo pipefail
export CURRENT_VERSION="$(./scripts/get_current_version.sh ${{ matrix.package }})"
git tag "${{ matrix.package }}-v$CURRENT_VERSION"
git push origin "${{ matrix.package }}-v$CURRENT_VERSION"
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # pin@v1
if: steps.check.outputs.is_new_version == 'yes'
- name: Login
run: cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Publish fastcrypto
if: steps.check.outputs.is_new_version == 'yes'
run: cargo publish -p ${{ matrix.package }} --token ${{ secrets.CARGO_REGISTRY_TOKEN }}