Skip to content

Commit 966ae67

Browse files
committed
fix: apply pr comment fixes
Refs: #19413 #19414
1 parent 3bccb26 commit 966ae67

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/actions/test_ya/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ runs:
287287
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV
288288
echo "BRANCH_NAME is set to $BRANCH_NAME"
289289
290-
TESTMO_BRANCH_TAG=${BRANCH_NAME//[^a-zA-Z0-9-]/-}
290+
TESTMO_BRANCH_TAG="${BRANCH_NAME//[^a-zA-Z0-9-]/-}"
291291
TESTMO_ARCH="${{ runner.arch == 'X64' && 'x86-64' || runner.arch == 'ARM64' && 'arm64' || 'unknown' }}"
292292
TESTMO_PR_NUMBER=${{ github.event.number }}
293293

.github/workflows/nightly_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
default: true
1212
push:
1313
tags:
14-
- '[0-9][0-9].[0-9].[0-9]**'
14+
- '[0-9]**'
1515
jobs:
1616
determine_branches:
1717
runs-on: ubuntu-latest
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- id: set-branches
2222
run: |
23-
if [[ "${{ github.event_name }}" == "schedule" || "${{ inputs.use_default_branches }}" == "true" && "${{ github.ref_type }}" != "tag" ]]; then
23+
if [[ "${{ github.event_name }}" == "schedule" || ("${{ inputs.use_default_branches }}" == "true" && "${{ github.ref_type }}" != "tag") ]]; then
2424
echo "branches=['main', 'stable-25-1', 'stable-24-4', 'stable-25-1-1', 'stable-25-1-analytics']" >> $GITHUB_OUTPUT
2525
else
2626
echo "branches=['${{ github.ref_name }}']" >> $GITHUB_OUTPUT
@@ -53,7 +53,7 @@ jobs:
5353
increment: false
5454
run_tests: false
5555
put_build_results_to_cache: false
56-
additional_ya_make_args: -DDEBUGINFO_LINES_ONLY # we don't need full symbols in CI checks
56+
additional_ya_make_args: "-DDEBUGINFO_LINES_ONLY" # we don't need full symbols in CI checks
5757
secs: ${{ format('{{"AWS_KEY_ID":"{0}","AWS_KEY_VALUE":"{1}","REMOTE_CACHE_USERNAME":"{2}","REMOTE_CACHE_PASSWORD":"{3}"}}',
5858
secrets.AWS_KEY_ID, secrets.AWS_KEY_VALUE, secrets.REMOTE_CACHE_USERNAME, secrets.REMOTE_CACHE_PASSWORD ) }}
5959
vars: ${{ format('{{"AWS_BUCKET":"{0}","AWS_ENDPOINT":"{1}","REMOTE_CACHE_URL":"{2}","TESTMO_URL":"{3}","TESTMO_PROJECT_ID":"{4}"}}',
@@ -70,4 +70,4 @@ jobs:
7070
shell: bash
7171
run: |
7272
set -x
73-
s3cmd sync --follow-symlinks --acl-public --no-progress --stats --no-check-md5 "ydb/apps/ydbd/ydbd" "s3://ydb-builds/$(echo -n "${{ matrix.branch }}" | tr -c '[:alnum:]-' '-')/${{ matrix.build_preset }}/ydbd" -d
73+
s3cmd sync --follow-symlinks --acl-public --no-progress --stats --no-check-md5 "ydb/apps/ydbd/ydbd" "s3://ydb-builds/${{ matrix.branch }}/${{ matrix.build_preset }}/ydbd" -d

0 commit comments

Comments
 (0)