We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3513015 commit 705c8b4Copy full SHA for 705c8b4
2 files changed
.github/workflows/release-p5-mode.yml
@@ -30,4 +30,13 @@ jobs:
30
tag: ${{ github.ref }}
31
file_glob: true
32
overwrite: true
33
+
34
+ - name: Upload Properties to Release
35
+ uses: svenstaro/upload-release-action@v2
36
+ with:
37
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
38
+ file: p5js/build/mode/mode.Properties
39
+ asset_name: p5js.txt
40
+ tag: ${{ github.ref }}
41
+ overwrite: true
42
p5js/build.gradle.kts
@@ -78,7 +78,8 @@ tasks.register<Download>("includeP5jsExamples"){
78
}
79
80
tasks.register<Copy>("createMode") {
81
- dependsOn("jar", "includeP5jsExamples")
+ dependsOn("jar")
82
+ finalizedBy("includeP5jsExamples")
83
into(layout.buildDirectory.dir("mode"))
84
// TODO Why is there a duplicate in the first place?
85
duplicatesStrategy = DuplicatesStrategy.WARN
0 commit comments