Skip to content

fix(ui): dropdown clickable options #105

fix(ui): dropdown clickable options

fix(ui): dropdown clickable options #105

Workflow file for this run

name: website
on:
push:
branches:
- master
- dev
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 11.22.0
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 24.x
- name: Install
run: pnpm install --frozen-lockfile
- name: Test, lint and build
run: pnpm full-check
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
# Если мастер - деплоим в корень
- uses: haya14busa/action-cond@v1
id: target_folder
with:
cond: ${{ steps.extract_branch.outputs.branch == 'master' }}
if_true: ""
if_false: ${{ steps.extract_branch.outputs.branch }}
- name: Deploy to Github Pages
if: success()
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: apps/web/build # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
TARGET_FOLDER: ${{ steps.target_folder.outputs.value }}