From 404de46cd43ca1e8678381ab507afdc6a41fe177 Mon Sep 17 00:00:00 2001 From: Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> Date: Mon, 10 Jun 2024 16:23:10 +0800 Subject: Add name and logging --- .github/workflows/beta.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 64a4b2f9..b78b72e8 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -31,7 +31,8 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - - uses: actions/github-script@v7 + - name: Set jar name + uses: actions/github-script@v7 with: result-encoding: string script: | @@ -41,6 +42,7 @@ jobs: } else { buildType = `pr-${process.env.PR_NUMBER}`; } + console.log(`Set build type to ${buildType}`); const fs = require("fs"); let file = fs.readFileSync("./gradle.properties"); -- cgit