-
-
Notifications
You must be signed in to change notification settings - Fork 171
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
2 changed files
with
9 additions
and
9 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 |
---|---|---|
|
@@ -79,13 +79,13 @@ jobs: | |
|
||
- name: Build ColdBox Variants for ${{ env.BRANCH }} v${{ env.COLDBOX_VERSION }} | ||
run: | | ||
# Fix changelog markdown | ||
npm install -g markdownlint-cli | ||
markdownlint changelog.md --fix | ||
# Startup the server for API Docs mostly. | ||
box server start serverConfigFile="[email protected]" --debug | ||
box task run build/Build.cfc / | ||
${{ env.COLDBOX_VERSION }} / # version | ||
${{ github.run_number }} / # build number | ||
${{ env.BRANCH }} # branch | ||
# Run the task | ||
box task run build/Build.cfc ${{ env.COLDBOX_VERSION }} ${{ github.run_number }} ${{ env.BRANCH }} | ||
- name: Commit Changelog [unreleased] with latest version | ||
uses: EndBug/[email protected] | ||
|
@@ -138,10 +138,10 @@ jobs: | |
- name: Publish | ||
run: | | ||
ROOT_DIR=`pwd` | ||
cd $ROOT_DIR/artifacts/coldbox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
cd $ROOT_DIR/artifacts/cachebox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
cd $ROOT_DIR/artifacts/wirebox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
cd $ROOT_DIR/artifacts/logbox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
cd $ROOT_DIR/.artifacts/coldbox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
cd $ROOT_DIR/.artifacts/cachebox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
cd $ROOT_DIR/.artifacts/wirebox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
cd $ROOT_DIR/.artifacts/logbox/${{ env.COLDBOX_VERSION }} && box forgebox publish | ||
- 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