forked from markmandel/ColdDoc
-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
6 changed files
with
20 additions
and
8 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 |
---|---|---|
|
@@ -74,7 +74,7 @@ jobs: | |
npm install -g markdownlint-cli | ||
markdownlint changelog.md --fix | ||
# Build it | ||
box task run taskfile=build/Build target=run :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ github.run_number }} | ||
box task run taskfile=build/Build target=run :version=${{ env.VERSION }} :projectName=${{ env.MODULE_ID }} :buildID=${{ github.run_number }} :branch=${{ env.BRANCH }} | ||
- name: Commit Changelog [unreleased] with latest version | ||
uses: EndBug/[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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name":"DocBox", | ||
"version":"4.1.0", | ||
"version":"4.1.1", | ||
"author":"Ortus Solutions, Corp", | ||
"location":"http://downloads.ortussolutions.com/ortussolutions/docbox/@build.version@/[email protected]@.zip", | ||
"homepage":"https://forgebox.io/view/docbox", | ||
|
@@ -25,8 +25,8 @@ | |
"Brad Wood <[email protected]>" | ||
], | ||
"dependencies":{ | ||
"commandbox-cfformat":"*" | ||
}, | ||
"commandbox-cfformat":"*" | ||
}, | ||
"devDependencies":{ | ||
"testbox":"^5" | ||
}, | ||
|
@@ -41,9 +41,9 @@ | |
"coldbox-5-router-documentation.png" | ||
], | ||
"scripts":{ | ||
"build":"task run taskFile=build/Build.cfc :projectName=docbox :version=`package show version`", | ||
"build:docs" : "task run build/Docs.cfc", | ||
"tests" : "task run taskFile=build/Build.cfc target=runTests", | ||
"build":"task run taskFile=build/Build.cfc :projectName=docbox :version=`package show version`", | ||
"build:docs":"task run build/Docs.cfc", | ||
"tests":"task run taskFile=build/Build.cfc target=runTests", | ||
"release":"recipe build/release.boxr", | ||
"format":"cfformat run --overwrite DocBox.cfc,build,strategy,tests", | ||
"format:watch":"cfformat watch DocBox.cfc,build,strategy,tests ./.cfformat.json", | ||
|
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
theme: jekyll-theme-cayman |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<!-- Thanks: https://dev.to/steveblue/setup-a-redirect-on-github-pages-1ok7 --> | ||
<title>Redirecting to https://docbox.ortusbooks.com</title> | ||
<meta http-equiv="refresh" content="0; URL=https://docbox.ortusbooks.com"> | ||
<link rel="canonical" href="https://docbox.ortusbooks.com"> |