-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into windows-self-rename
- Loading branch information
Showing
46 changed files
with
2,032 additions
and
671 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
name: Check i18n | ||
|
||
jobs: | ||
check_locale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install checker | ||
# Build it with the dev profile as this is faster and the checker still works | ||
run: | | ||
cargo install --git https://github.com/topgrade-rs/topgrade_i18n_locale_checker --profile dev | ||
- name: Run the checker | ||
run: topgrade_i18n_locale_checker --locale-file ./locales/app.yml --rust-src-to-check ./src |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,11 +13,19 @@ jobs: | |
aur-publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Publish AUR package | ||
- name: Publish source AUR package | ||
uses: aksh1618/[email protected] | ||
with: | ||
tag_version_prefix: v | ||
package_name: topgrade | ||
commit_username: "Thomas Schönauer" | ||
commit_email: [email protected] | ||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | ||
- name: Publish binary AUR package | ||
uses: aksh1618/[email protected] | ||
with: | ||
tag_version_prefix: v | ||
package_name: topgrade-bin | ||
commit_username: "Thomas Schönauer" | ||
commit_email: [email protected] | ||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
# Git: Pull Repos | ||
# Containers step | ||
|
||
1. The output of "Pulling <repository path>" has been moved behind the | ||
--verbose flag / [misc] configuration block. | ||
|
||
# Configuration | ||
|
||
1. The `enable_winget` configuration entry in the `windows` section has been | ||
removed because it will not cause any issues and will be enabled by default. | ||
* New default behavior: In the previous versions, if you have both Docker and | ||
Podman installed, Podman will be used by Topgrade. Now the default option | ||
has been changed to Docker. This can be overridden by setting the | ||
`containers.runtime` option in the configuration TOML to "podman". |
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
Oops, something went wrong.