Skip to content

CLDR-19135 try out variable #188

CLDR-19135 try out variable

CLDR-19135 try out variable #188

Workflow file for this run

name: Publish to cldr-smoke
on:
push:
branches:
- charts/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: get chart number
id: setup
# refs/heads/charts/49
# steps.setup.outputs.chartnum
run: |
echo "chartnum="$(echo ${{ github.ref }} | cut -d/ -f4) | tee -a $GITHUB_OUTPUT
- uses: actions/checkout@v6
with:
sparse-checkout: 'docs/charts'
- name: check checkout
run: du -sh docs/charts/${{ steps.setup.outputs.chartnum }}
- name: Set known host key
# For the host key verification of ssh behind rsync.
run: |
mkdir ~/.ssh
echo "sarasvati.unicode.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGx+XeCMGtRbA7X26EVcYG41zQrZmM05Vw5I0zISPqz9f+94Vlm4P26hsmY/DCA1j4EMlbbiISqRqzbLfAz1s5s=" >> ~/.ssh/known_hosts
echo "cldr-smoke.unicode.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKebRPtFh4wfiya5UX+8OGJorbdu66PeXASGLvgmSMgewsBF0LwS2r5qcMlv11LdSQh/PrP0gWndmG7bBOQOZj0=" >> ~/.ssh/known_hosts
# - name: Sync files to server
# run: |
# rsync --recursive --inplace --verbose --verbose \
# website/charts \
# [email protected]:/home/httpd/htdocs
# env:
# SSHPASS: ${{ secrets.WEBSITE_DEPLOYMENT_PASSWORD }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true