Skip to content

Commit

Permalink
updating build process
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Sep 29, 2023
1 parent 3a82e5d commit 7437d1b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow is used to build releases
# It can also be called by other workflows to reuse the release flow.
name: ColdBox Release
name: BoxLang Release

on:
# If you push to main this will trigger a stable release
Expand Down Expand Up @@ -106,10 +106,10 @@ jobs:
with:
name: boxlang-build
path: |
runtime/build/distributions/**
runtime/build/docs/**
runtime/build/libs/**
runtime/build/scripts/**
build/distributions/**
build/docs/**
build/libs/**
build/scripts/**
changelog.md
# - name: Upload Binaries to S3
Expand Down Expand Up @@ -155,6 +155,8 @@ jobs:
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: |
runtime/build/distributions/**
runtime/build/docs/**
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
fail-fast: false
matrix:
jdkVersion: [ "17" ]
experimental: [false]
experimental: [ false ]
include:
- jdkVersion: "20"
- jdkVersion: "21"
experimental: true
steps:
- name: Checkout Repository
Expand Down

0 comments on commit 7437d1b

Please sign in to comment.