Skip to content

Commit b8291c7

Browse files
remove PushNotifications userlibs from repo
1 parent 4298d17 commit b8291c7

File tree

84 files changed

+29
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+29
-17
lines changed

.github/workflows/build-module.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,7 @@ jobs:
3939
- name: "Detected module version"
4040
run: echo $env:MODULE_VERSION
4141
- name: Build module
42-
run: ./gradlew exportModule
43-
# - name: Create release
44-
# uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
45-
# with:
46-
# token: ${{ secrets.GITHUB_TOKEN }}
47-
# name: Marketplace release v${{ env.MODULE_VERSION }}
48-
# tag_name: v${{ env.MODULE_VERSION }}
49-
# body: |
50-
# (insert release notes)
51-
# draft: true
52-
# prerelease: false
53-
# files: |
54-
# module/dist/PushNotifications-${{ env.MODULE_VERSION }}.mpk
42+
run: ./gradlew buildModule
5543
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5644
with:
5745
name: PushNotifications-${{ env.MODULE_VERSION }}.mpk

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ widget/node_modules/
2626
*DS_Store*
2727
.vscode/
2828
*.bak
29+
30+
module/userlib/*.jar
31+
module/userlib/*.RequiredLib

README.md

Lines changed: 19 additions & 3 deletions

module/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ tasks.register('cleanUserLibs', Delete) {
9191
}
9292
}
9393

94+
tasks.register('buildModule') {
95+
dependsOn tasks.updateUserLibs, tasks.exportModule
96+
}
97+
9498
tasks.register('exportModule') {
9599
dependsOn tasks.mxutil {
96100
args = ["create-module-package", "--filter-required-libs", "--package-dir=dist", "--exclude-files=resources", "PushNotifications.mpr", project.MODULE_NAME]
@@ -114,4 +118,5 @@ tasks.register('cleanModule', Delete) {
114118
delete 'dist/PushNotifications.mpk'
115119
}
116120

117-
tasks.cleanModule.mustRunAfter tasks.fixWidgets
121+
tasks.exportModule.mustRunAfter tasks.updateUserLibs
122+
tasks.cleanModule.mustRunAfter tasks.fixWidgets
-7.32 KB
Binary file not shown.

module/userlib/auto-value-annotations-1.9.jar.PushNotifications.RequiredLib

Whitespace-only changes.
-219 KB
Binary file not shown.

module/userlib/checker-qual-3.33.0.jar.PushNotifications.RequiredLib

Whitespace-only changes.
-346 KB
Binary file not shown.

module/userlib/commons-codec-1.15.jar.PushNotifications.RequiredLib

Whitespace-only changes.

0 commit comments

Comments
 (0)