diff --git a/.github/workflows/default_release_notes.md b/.github/workflows/default_release_notes.md index 285d15b..5cc73ec 100644 --- a/.github/workflows/default_release_notes.md +++ b/.github/workflows/default_release_notes.md @@ -3,6 +3,3 @@ - Download `tabletdrivercleanup.zip`. - Extract the contents of the zip. - Run `tabletdrivercleanup.exe` as administrator. - -## What's Changed - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ca2fa6d..f77b1d4 100755 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - "*" jobs: - build-win: + build-win-and-release: runs-on: windows-latest permissions: contents: write diff --git a/.github/workflows/update_config_branch.yml b/.github/workflows/update_config_branch.yml new file mode 100644 index 0000000..bbd9580 --- /dev/null +++ b/.github/workflows/update_config_branch.yml @@ -0,0 +1,19 @@ +name: Update Config Branch + +on: + workflow_dispatch: + release: + types: [published] + +jobs: + create-pr: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - uses: actions/checkout@v6 + - name: Create pull request + run: gh pr create --base v4.x --title "Bump v4.x branch on release publish" --body "" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 847f4e5..6149965 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A CLI program that cleanly uninstalls tablet drivers. ## Instructions -- Download `tabletdrivercleanup.zip` from [latest release](https://github.com/X9VoiD/TabletDriverCleanup/releases). +- Download `tabletdrivercleanup.zip` from [latest release](https://github.com/OpenTabletDriver/TabletDriverCleanup/releases). - Extract the contents of the zip file. - Run as administrator. diff --git a/src/services/identifiers.rs b/src/services/identifiers.rs index 6a02c43..cdc94f5 100644 --- a/src/services/identifiers.rs +++ b/src/services/identifiers.rs @@ -134,7 +134,7 @@ async fn get_resource_online( bail!(RetrievalErr::Disallowed("online")) } - let base_url = "https://raw.githubusercontent.com/X9VoiD/TabletDriverCleanup"; + let base_url = "https://raw.githubusercontent.com/OpenTabletDriver/TabletDriverCleanup"; let git_ref = "v4.x"; let url = format!("{base_url}/{git_ref}/config/{identifier}");