fix(deps): update rust crate thiserror to v2.0.4 (#289) #280
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release babyrite | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get token | |
id: babyrite-token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.PRIVATE_KEY }} | |
- name: Run release-please-action | |
uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
token: ${{ steps.babyrite-token.outputs.token }} | |
- name: Publish the Docker package | |
if: steps.release.outputs.release_created | |
uses: ./.github/actions/publish | |
with: | |
major: ${{ steps.release.outputs.major }} | |
minor: ${{ steps.release.outputs.minor }} | |
patch: ${{ steps.release.outputs.patch }} | |
sha: ${{ steps.release.outputs.sha }} |