Skip to content

Commit

Permalink
Updating binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Shchvova committed Jun 30, 2020
1 parent 97f3e05 commit 93920a7
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ on:
push:
paths:
- 'plugins/**'
repository_dispatch:

env:
releaseName: v${{ github.run_number }}
Expand All @@ -24,6 +25,7 @@ jobs:
(
if [ ! -d "$platform" ] ; then continue ; fi
cd "$platform"
if ! ls * &> /dev/null ; then continue ; fi
COPYFILE_DISABLE=true tar -czvf ../../"$build-$platform.tgz" --exclude=".*" *
)
done
Expand All @@ -37,4 +39,16 @@ jobs:
tag_name: ${{ env.releaseName }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Directory update request
run: |
[ -z "${{ secrets.ISSUE_PAT }}" ] && echo "Skipping, no ISSUE_PAT" && exit 0
curl --request POST \
--url https://api.github.com/repos/solar2d/plugins.solar2d.com/dispatches \
--header 'authorization: Bearer ${{ secrets.ISSUE_PAT }}' \
--header 'content-type: application/json' \
--data '{
"event_type": "repo_updated",
"client_payload": {
"repo": "${{ github.repository }}"
}
}'
7 changes: 7 additions & 0 deletions plugins/2020.3569/android/corona.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dependencies {
implementation("com.appodeal.ads.sdk.networks:adcolony:2.6.4.4")
// {
// exclude group: "com.adcolony", module: "sdk"
// }
// implementation("com.adcolony:sdk:4.1.2")
}
Binary file not shown.
Binary file not shown.
12 changes: 12 additions & 0 deletions plugins/2020.3569/iphone-sim/metadata.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
local metadata =
{
plugin =
{
format = 'staticLibrary',
staticLibs = { 'APDAdColonyAdapter', },
frameworks = { 'AdColony', },
frameworksOptional = { 'EventKit', 'WatchConnectivity', 'Social', },
},
}

return metadata
Binary file not shown.
Binary file added plugins/2020.3569/iphone/libAPDAdColonyAdapter.a
Binary file not shown.
12 changes: 12 additions & 0 deletions plugins/2020.3569/iphone/metadata.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
local metadata =
{
plugin =
{
format = 'staticLibrary',
staticLibs = { 'APDAdColonyAdapter', },
frameworks = { 'AdColony', },
frameworksOptional = { 'EventKit', 'WatchConnectivity', 'Social', },
},
}

return metadata

0 comments on commit 93920a7

Please sign in to comment.