Skip to content

v4.31.2

v4.31.2 #3

Workflow file for this run

on:
release:
types: [released]
name: Publication
jobs:
publication:
runs-on: ubuntu-latest
env:
ASSET_NAME: embedded-ui
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
- run: npm run build:embedded
- name: Embedded UI Artifact Upload
env:
GITHUB_TOKEN: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
run: |
mv build /tmp/$ASSET_NAME
cd /tmp
zip -r $ASSET_NAME.zip $ASSET_NAME
gh release upload ${{ github.event.release.tag_name }} $ASSET_NAME.zip
- name: Embedded UI Refresh Event Dispatch
uses: peter-evans/repository-dispatch@v2
continue-on-error: true
with:
token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
repository: ydb-platform/ydb
event-type: embedded_ui_refresh
client-payload: |
{
"tag_name": "${{ github.event.release.tag_name }}",
"asset_name": "${{ env.ASSET_NAME }}",
"repository": "${{ github.repository }}"
}