Skip to content

Commit 4238d9f

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents e6e88a7 + 015ca1a commit 4238d9f

File tree

3 files changed

+51
-1
lines changed

3 files changed

+51
-1
lines changed

.github/workflows/generate-apk-aab-debug-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set Up JDK
3737
uses: actions/setup-java@v1
3838
with:
39-
java-version: 11
39+
java-version: 17
4040

4141
- name: Change wrapper permissions
4242
run: chmod +x ./gradlew

.github/workflows/gradle-publish.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
6+
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle
7+
8+
name: Gradle Package
9+
10+
on:
11+
release:
12+
types: [created]
13+
14+
jobs:
15+
build:
16+
17+
runs-on: ubuntu-latest
18+
permissions:
19+
contents: read
20+
packages: write
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Set up JDK 17
25+
uses: actions/setup-java@v4
26+
with:
27+
java-version: '17'
28+
distribution: 'temurin'
29+
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
30+
settings-path: ${{ github.workspace }} # location for the settings.xml file
31+
32+
- name: Setup Gradle
33+
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
34+
35+
- name: Build with Gradle
36+
run: ./gradlew build
37+
38+
# The USERNAME and TOKEN need to correspond to the credentials environment variables used in
39+
# the publishing section of your build.gradle
40+
- name: Publish to GitHub Packages
41+
run: ./gradlew publish
42+
env:
43+
USERNAME: ${{ github.actor }}
44+
TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# WebApper est un navigateur simple a utiliser, sécurisé, privé, et open-source.
2+
Vous avez besoin d'aller chercher un paramètre spécifique sans avoir à naviguer a travers des menus ? WebApper est là.
3+
4+
- Tout les paramètres sont accessibles depuis le menu défilant.
5+
- L'auto remplissage fonctionne, donc vous n'aurez pas besoin de retaper votre mot de passe enregistré dans votre compte google, le clavier s'en charge.
6+
- Les couleurs sont personnalisables.

0 commit comments

Comments
 (0)