generated from ortus-boxlang/boxlang-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
65 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
- name: Setup CommandBox | ||
uses: Ortus-Solutions/[email protected] | ||
with: | ||
forgeboxAPIKey: ${{ secrets.FORGEBOX_TOKEN }} | ||
forgeboxAPIKey: ${{ secrets.FORGEBOX_API_TOKEN }} | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
|
@@ -118,11 +118,11 @@ jobs: | |
with: | ||
args: --acl public-read | ||
env: | ||
AWS_S3_BUCKET: "ortus-temp" | ||
AWS_S3_BUCKET: "downloads.ortussolutions.com" | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_SECRET }} | ||
SOURCE_DIR: "build/distributions" | ||
DEST_DIR: "boxlang-modules/${{ env.MODULE_ID }}/${{ env.VERSION }}" | ||
DEST_DIR: "ortussolutions/boxlang-modules/${{ env.MODULE_ID }}/${{ env.VERSION }}" | ||
|
||
# - name: Upload API Docs to S3 | ||
# uses: jakejarvis/s3-sync-action@master | ||
|
@@ -137,6 +137,10 @@ jobs: | |
|
||
# - name: Publish to Maven Central | ||
# run: | | ||
- name: Publish to ForgeBox | ||
run: | | ||
cd build/module | ||
box forgebox publish --force | ||
- name: Create Github Release | ||
uses: taiki-e/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,3 @@ | |
"source.organizeImports": "explicit" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,48 @@ | ||
{ | ||
"name":"BoxLang Apache Derby", | ||
"version":"@build.version@[email protected]@", | ||
"location" : "https://downloads.ortussolutions.com/ortussolutions/boxlang-modules/bx-derby/@build.version@/[email protected]@.zip", | ||
"author":"Ortus Solutions", | ||
"homepage":"https://github.com/boxlang-modules/bx-derby", | ||
"documentation":"https://github.com/boxlang-modules/bx-derby", | ||
"repository":{ | ||
"type":"git", | ||
"URL":"https://github.com/boxlang-modules/bx-derby" | ||
}, | ||
"bugs":"https://github.com/boxlang-modules/bx-derby/issues", | ||
"slug":"bx-derby", | ||
"shortDescription":"Module template for BoxLang modules", | ||
"type":"boxlang-modules", | ||
"keywords":[ | ||
"boxlang" | ||
], | ||
"private":false, | ||
"license":[ | ||
{ | ||
"type":"Apache-2.0", | ||
"URL":"https://www.apache.org/licenses/LICENSE-2.0" | ||
} | ||
], | ||
"devDependencies" :{ | ||
"commandbox-cfformat":"*", | ||
"commandbox-docbox":"*", | ||
"commandbox-dotenv":"*", | ||
"commandbox-cfconfig":"*", | ||
"name": "BoxLang Apache Derby", | ||
"version": "@build.version@[email protected]@", | ||
"location": "https://downloads.ortussolutions.com/ortussolutions/boxlang-modules/bx-derby/@build.version@/[email protected]@.zip", | ||
"author": "Ortus Solutions", | ||
"homepage": "https://github.com/boxlang-modules/bx-derby", | ||
"documentation": "https://github.com/boxlang-modules/bx-derby", | ||
"repository": { | ||
"type": "git", | ||
"URL": "https://github.com/boxlang-modules/bx-derby" | ||
}, | ||
"bugs": "https://github.com/boxlang-modules/bx-derby/issues", | ||
"slug": "bx-derby", | ||
"shortDescription": "BoxLang module for Apache Derby database connectivity", | ||
"type": "boxlang-modules", | ||
"boxlang": { | ||
"moduleName": "derby" | ||
}, | ||
"keywords": ["boxlang"], | ||
"unlisted": true, | ||
"private": false, | ||
"license": [ | ||
{ | ||
"type": "Apache-2.0", | ||
"URL": "https://www.apache.org/licenses/LICENSE-2.0" | ||
} | ||
], | ||
"devDependencies": { | ||
"commandbox-cfformat": "*", | ||
"commandbox-docbox": "*", | ||
"commandbox-dotenv": "*", | ||
"commandbox-cfconfig": "*", | ||
"testbox": "*" | ||
}, | ||
"ignore": [ | ||
"**/.*", | ||
"settings.gradle", | ||
"gradlew.bat", | ||
"gradlew", | ||
"build.gradle", | ||
"/src/**", | ||
"gradle/**" | ||
], | ||
"scripts":{ | ||
"ignore": [ | ||
"**/.*", | ||
"settings.gradle", | ||
"gradlew.bat", | ||
"gradlew", | ||
"build.gradle", | ||
"/src/**", | ||
"gradle/**" | ||
], | ||
"scripts": { | ||
"setupTemplate": "task run taskFile=src/build/SetupTemplate.cfc", | ||
"onRelease":"publish" | ||
} | ||
"onRelease": "publish" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Gradle Properties | ||
version = 1.0.0 | ||
group = com.ortussolutions | ||
boxlangVersion = 1.0.0 | ||
jdkVersion = 17 | ||
version=1.0.0 | ||
group=com.ortussolutions | ||
boxlangVersion=1.0.0 | ||
jdkVersion=17 |