Skip to content

Commit

Permalink
Merge pull request #5626 from nipunayf/update-flow-workflow
Browse files Browse the repository at this point in the history
Set the ballerina lang timestamp version for the editor worflow
  • Loading branch information
nipunayf committed Sep 4, 2024
2 parents 98c8227 + 4c74b8b commit 75eef0f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/daily-build-editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
TEST_MODE_ACTIVE: true
run: |
cd ballerina-dev-tools
DEV_TOOLS_VERSION=$(grep "^version=" gradle.properties | cut -d'=' -f2)
echo "::set-output name=version::$DEV_TOOLS_VERSION"
echo "::set-output name=version::$(grep "^version=" gradle.properties | cut -d'=' -f2)"
echo "::set-output name=langVersion::$(grep "^ballerinaLangVersion=" gradle.properties | cut -d'=' -f2)"
./gradlew clean build --stacktrace --scan -x test --console=plain --no-daemon --continue publishToMavenLocal
cd ..
- name: Checkout Distribution Repository
Expand Down Expand Up @@ -71,9 +71,10 @@ jobs:
ballerinaBotWorkflow: $ {{ secrets.BALLERINA_BOT_WORKFLOW }}
TEST_MODE_ACTIVE: true
run: |
cd ballerina-distribution
sed -i "s/^devToolsVersion=.*/devToolsVersion=${{ steps.build-dev-tools.outputs.version }}/" gradle.properties
./gradlew clean build --stacktrace --scan -x test --console=plain --no-daemon --continue -x project-api-tests:test
cd ballerina-distribution
sed -i "s/^devToolsVersion=.*/devToolsVersion=${{ steps.build-dev-tools.outputs.version }}/" gradle.properties
sed -i "s/^ballerinaLangVersion=.*/ballerinaLangVersion=${{ steps.build-dev-tools.outputs.langVersion }}/" gradle.properties
./gradlew clean build --stacktrace --scan -x test --console=plain --no-daemon --continue -x project-api-tests:test
- name: Create linux-deb
id: run_installers_deb
run: |
Expand Down

0 comments on commit 75eef0f

Please sign in to comment.