0f7dbb94a8
* version fix * try to publish core crates first * bump version ci * fix to yaml * Slight modifications to ordering, remove core-crates and rely on ordering as test + sed tweak * crates release: bump version to 1.21.0 (#6744) Co-authored-by: Nym bot <nym-bot@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me> * Remove unnecessary verification step becase of dryrun (doubled) * Revert some changes to develop * Add preflight to its own workflow * Clippy * Update crate publishing file * Clippy --------- Co-authored-by: benedettadavico <benedettadavico@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Nym bot <nym-bot@users.noreply.github.com>
93 lines
2.7 KiB
YAML
93 lines
2.7 KiB
YAML
name: Publish crates to crates.io
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
publish_interval:
|
|
description: "Seconds to wait between publishes (600 for first publish, 60 after)"
|
|
required: false
|
|
default: "600"
|
|
type: string
|
|
backup_author:
|
|
description: "Second team member added as owner of the crate"
|
|
required: false
|
|
default: "jstuczyn"
|
|
type: string
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: arc-linux-latest
|
|
env:
|
|
RUSTUP_PERMIT_COPY_RENAME: 1
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
|
|
- name: Install cargo-workspaces
|
|
run: cargo install cargo-workspaces
|
|
|
|
- name: Preflight publish checks
|
|
run: |
|
|
python3 tools/internal/check_publish_preflight.py
|
|
|
|
# --publish-as-is skips version bumping since that's done in a separate CI job.
|
|
- name: Publish
|
|
env:
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
run: |
|
|
cargo workspaces publish \
|
|
--publish-as-is \
|
|
--publish-interval ${{ inputs.publish_interval }}
|
|
|
|
- name: Show package versions
|
|
run: cargo workspaces list --long
|
|
|
|
- name: Add team as crate owners
|
|
env:
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
run: |
|
|
TEAM="github:nymtech:core"
|
|
echo "Checking and adding $TEAM as owner to workspace crates..."
|
|
|
|
cargo workspaces list | while read crate; do
|
|
echo "Checking $crate..."
|
|
|
|
if cargo owner --list "$crate" 2>/dev/null | grep -q "$TEAM"; then
|
|
echo " $TEAM already owns $crate, skipping"
|
|
else
|
|
echo " Adding $TEAM as owner of $crate..."
|
|
cargo owner --add "$TEAM" "$crate"
|
|
sleep 2
|
|
fi
|
|
done
|
|
|
|
echo "Done!"
|
|
|
|
- name: Add secondary member as crate owner
|
|
env:
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
run: |
|
|
TEAM_MEMBER="${{ inputs.backup_author }}"
|
|
echo "Checking and adding $TEAM_MEMBER as owner to workspace crates..."
|
|
|
|
cargo workspaces list | while read crate; do
|
|
echo "Checking $crate..."
|
|
|
|
if cargo owner --list "$crate" 2>/dev/null | grep -q "$TEAM_MEMBER"; then
|
|
echo " $TEAM_MEMBER already owns $crate, skipping"
|
|
else
|
|
echo " Adding $TEAM_MEMBER as owner of $crate..."
|
|
cargo owner --add "$TEAM_MEMBER" "$crate"
|
|
sleep 2
|
|
fi
|
|
done
|
|
|
|
echo "Done!"
|