Skip to content

Commit

Permalink
ci: move crate publish out of ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Stonks3141 authored Feb 5, 2024
1 parent 84ab307 commit 3fbd1b4
Showing 1 changed file with 0 additions and 44 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,47 +40,3 @@ jobs:
cache-on-failure: true
- name: Run tests
run: cargo test

check-published-version:
name: Check published version
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs:
- Check
- Test

steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install gojq
run: sudo apt-get install gojq
- name: 'Check if crate ${{ inputs.crate }} is published'
run: |
set -euxo pipefail
url="https://raw.githubusercontent.com/rust-lang/crates.io-index/master/ca/tp/catppuccin-egui"
published="$(curl -fsSL "$url" | gojq -sr 'map(.vers) | sort | .[-1]')"
manifest="$(awk -F \" '/version = / { print $2 }' Cargo.toml)"
if [ "$manifest" = "$published" ]; then
echo 'new_version=no' >> $GITHUB_OUTPUT
else
echo 'new_version=yes' >> $GITHUB_OUTPUT
fi
Publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && needs.check-published-version.outputs.new_version == 'yes'
environment: crates.io
needs:
- check-published-version

steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Publish crates
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit 3fbd1b4

Please sign in to comment.