Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .github/workflows/release-please.yml

This file was deleted.

59 changes: 59 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Release-plz

on:
push:
branches:
- main

permissions:
contents: write
issues: write
pull-requests: write

jobs:
release-plz-release:
name: Release-plz release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- &checkout
name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- &install-rust
name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- &generate-token
uses: actions/create-github-app-token@v2
id: generate-token
with:
app-id: ${{ vars.RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
- name: Run release-plz
uses: release-plz/[email protected]
with:
command: release
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
release-plz-pr:
name: Release-plz PR
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
concurrency:
group: release-plz-${{ github.ref }}
cancel-in-progress: false
steps:
- *checkout
- *install-rust
- *generate-token
- name: Run release-plz
uses: release-plz/[email protected]
with:
command: release-pr
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
2 changes: 1 addition & 1 deletion crates/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use the library in your project:

```toml
[dependencies]
stac = "0.13"
stac = "*"
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion crates/io/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To use the library in your project:

```toml
[dependencies]
stac-io = "0.1"
stac-io = "*"
```

## Other info
Expand Down
2 changes: 1 addition & 1 deletion crates/pgstac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In your `Cargo.toml`:

```toml
[dependencies]
pgstac = "0.3"
pgstac = "*"
```

See the [documentation](https://docs.rs/pgstac) for more.
Expand Down
2 changes: 1 addition & 1 deletion crates/server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To use this library in another application:

```toml
[dependencies]
stac-server = "0.3"
stac-server = "*"
```

### Deploying
Expand Down