Skip to content

Commit

Permalink
Merge pull request #1 from ortus-boxlang/development
Browse files Browse the repository at this point in the history
Latest Updates
  • Loading branch information
lmajano authored May 28, 2024
2 parents 68e7434 + 73ddcde commit 264fa37
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
14 changes: 1 addition & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
# The installer version
VERSION: 1.0.0
VERSION: 1.0.1

jobs:
publish:
Expand Down Expand Up @@ -71,18 +71,6 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
ref: refs/tags/v${{ env.VERSION }}

- name: Upload Release Asset
uses: sekwah41/upload-release-assets@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_name: boxlang-${{ env.VERSION }}.zip
asset_content_type: application/zip
asset_path: |
src/**
changelog.md
- name: Inform Slack
if: ${{ always() }}
uses: rtCamp/action-slack-notify@v2
Expand Down
12 changes: 11 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2024-05-27

## [1.0.1] - 2024-May-28

### Added

The installer scripts are now installed to: `/usr/local/bin`. So you can reuse them.

- `install-boxlang`
- `install-bx-module`

## [1.0.0] - 2024-May-27

### Added

Expand Down
6 changes: 4 additions & 2 deletions src/install-boxlang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,13 @@ main() {
ln -sf "${DESTINATION_BIN}/boxlang" "${DESTINATION_BIN}/bx"
ln -sf "${DESTINATION_BIN}/boxlang-miniserver" "${DESTINATION_BIN}/bx-miniserver"

# Install the install-bx-module.sh script from https://raw.githubusercontent.com/ortus-boxlang/boxlang-quick-installer/development/src/install-bx-module.sh
# Install the Installer scripts
printf "\n"
printf "${BLUE}Installing BoxLang® Module Installer...${NORMAL}\n"
printf "${BLUE}Installing BoxLang® Module & Core Installer Scripts [install-bx-module, install-boxlang]...${NORMAL}\n"
env curl -Lk -o "${DESTINATION_BIN}/install-bx-module" "https://raw.githubusercontent.com/ortus-boxlang/boxlang-quick-installer/development/src/install-bx-module.sh"
chmod +x "${DESTINATION_BIN}/install-bx-module"
env curl -Lk -o "${DESTINATION_BIN}/install-boxlang" "https://raw.githubusercontent.com/ortus-boxlang/boxlang-quick-installer/development/src/install-boxlang.sh"
chmod +x "${DESTINATION_BIN}/install-boxlang"

# Cleanup
printf "\n"
Expand Down

0 comments on commit 264fa37

Please sign in to comment.