Skip to content

Commit 4a7202d

Browse files
authored
chore: Merge branch dev to main (#3451)
2 parents 9a6194e + cb1c264 commit 4a7202d

File tree

8 files changed

+169
-127
lines changed

8 files changed

+169
-127
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
jobs:
1111
release:
1212
name: Release
13+
permissions:
14+
contents: write
15+
packages: write
1316
runs-on: ubuntu-latest
1417
steps:
1518
- name: Checkout
@@ -52,5 +55,5 @@ jobs:
5255

5356
- name: Release
5457
env:
55-
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
58+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5659
run: npm exec semantic-release

.releaserc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"README.md",
2525
"CHANGELOG.md",
2626
"gradle.properties",
27-
]
27+
],
28+
"message": "chore: Release v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
2829
}
2930
],
3031
[

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.4-dev.2](https://github.com/ReVanced/revanced-patches-template/compare/v1.0.4-dev.1...v1.0.4-dev.2) (2024-11-05)
2+
3+
## [1.0.4-dev.1](https://github.com/ReVanced/revanced-patches-template/compare/v1.0.3...v1.0.4-dev.1) (2024-09-30)
4+
15
## [1.0.3](https://github.com/ReVanced/revanced-patches-template/compare/v1.0.2...v1.0.3) (2024-09-08)
26

37

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,10 @@ To start using this template, follow these steps:
8181
and the [About](patches/build.gradle.kts#L5-L11))
8282
3. Update dependencies in the [libs.versions.toml](gradle/libs.versions.toml) file
8383
4. [Create a pass-phrased GPG master key and subkey](https://mikeross.xyz/create-gpg-key-pair-with-subkeys/)
84-
1. Add the private key as a secret named [GPG_PRIVATE_KEY](.github/workflows/release.yml#L48) to your repository
85-
2. Add the passphrase as a secret named [GPG_PASSPHRASE](.github/workflows/release.yml#L49) to your repository
86-
3. Add the fingerprint of the GPG subkey as a secret named [GPG_FINGERPRINT](.github/workflows/release.yml#L50) to your repository
87-
5. [Create a PAT](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens) with [push access](https://github.com/semantic-release/semantic-release/blob/master/docs/usage/ci-configuration.md#authentication)
88-
1. Add it as a secret named [REPOSITORY_PUSH_ACCESS](.github/workflows/release.yml#L54) to your repository
89-
6. Set up the [README.md](README.md) file[^1] (e.g, title, description, license, summary of the patches
84+
1. Add the private key as a secret named [GPG_PRIVATE_KEY](.github/workflows/release.yml#L52) to your repository
85+
2. Add the passphrase as a secret named [GPG_PASSPHRASE](.github/workflows/release.yml#L53) to your repository
86+
3. Add the fingerprint of the GPG subkey as a secret named [GPG_FINGERPRINT](.github/workflows/release.yml#L54) to your repository
87+
5. Set up the [README.md](README.md) file[^1] (e.g, title, description, license, summary of the patches
9088
that are included in the repository), the [issue templates](.github/ISSUE_TEMPLATE)[^2] and the [contribution guidelines](CONTRIBUTING.md)[^3]
9189

9290
🎉 You are now ready to start creating patches!

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
org.gradle.parallel = true
22
org.gradle.caching = true
33
kotlin.code.style = official
4-
version = 1.0.3
4+
version = 1.0.4-dev.2

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
revanced-patcher = "20.0.0"
2+
revanced-patcher = "21.0.0"
33
# Tracking https://github.com/google/smali/issues/64.
44
#noinspection GradleDependency
55
smali = "3.0.5"

0 commit comments

Comments
 (0)