pull tags in github action (#723)

* pull tags in github action

* more detailed version

* more
This commit is contained in:
Logan McNaughton
2026-04-09 05:50:48 -06:00
committed by GitHub
parent 914798e717
commit f865ccfacd
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -33,6 +33,7 @@ jobs:
- uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: ${{ matrix.target }}
@@ -89,6 +90,7 @@ jobs:
- uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: ${{ matrix.target }}
@@ -154,6 +156,7 @@ jobs:
- uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: ${{ matrix.target }}
+1 -1
View File
@@ -293,7 +293,7 @@ fn about_window(app: &AppWindow) {
app.on_newversion_button_clicked(move || {
open::that_detached("https://github.com/gopher64/gopher64/releases/latest").unwrap();
});
app.set_version(format!("Version: {}", env!("CARGO_PKG_VERSION")).into());
app.set_version(format!("Version: {}", env!("GIT_DESCRIBE")).into());
if std::env::var("FLATPAK_ID").is_err() {
check_latest_version(app.as_weak());
}