fix(ci): Ensure the Release Crate job fetches the most recent commit before publishing the crate [skip ci]

This commit is contained in:
2024-11-25 19:58:34 -07:00
parent c93543186a
commit 6006c9d0e8
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -120,8 +120,14 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Ensure repository is up-to-date
run: |
git fetch --all
- name: Install Rust stable - name: Install Rust stable
uses: dtolnay/rust-toolchain@stable uses: dtolnay/rust-toolchain@stable
- uses: katyo/publish-crates@v2 - uses: katyo/publish-crates@v2
with: with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Generated
+1 -1
View File
@@ -1303,7 +1303,7 @@ dependencies = [
[[package]] [[package]]
name = "managarr" name = "managarr"
version = "0.3.4" version = "0.3.5"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_cmd", "assert_cmd",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "managarr" name = "managarr"
version = "0.3.4" version = "0.3.5"
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"] authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
description = "A TUI and CLI to manage your Servarrs" description = "A TUI and CLI to manage your Servarrs"
keywords = ["managarr", "ratatui", "dashboard", "servarr", "tui"] keywords = ["managarr", "ratatui", "dashboard", "servarr", "tui"]