Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Feb 13, 2024
2 parents 8e6cf90 + 11ec514 commit 2b09383
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
12 changes: 6 additions & 6 deletions box.json
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",
Expand All @@ -25,8 +25,8 @@
"Brad Wood <[email protected]>"
],
"dependencies":{
"commandbox-cfformat":"*"
},
"commandbox-cfformat":"*"
},
"devDependencies":{
"testbox":"^5"
},
Expand All @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion build/Build.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ component {
"tests",
"server-.*\.json",
"^\..*",
"coldbox-5-router-documentation.png"
"coldbox-5-router-documentation.png",
"docs"
];

// Cleanup + Init Build Directories
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Missed branch identifier in build process

## [4.1.0] - 2024-02-13

### Added
Expand Down
1 change: 1 addition & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: jekyll-theme-cayman
6 changes: 6 additions & 0 deletions docs/index.html
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">

0 comments on commit 2b09383

Please sign in to comment.