This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
feat: В тех.радар Подписи добавлена информация о версии TS (#11) #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Deploy' | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Install dependencies | |
run: npm i | |
- name: Build | |
run: npm run build | |
env: | |
VITE_RENDER_RADAR_URL: 'https://kaluga-astral.github.io/render-tech-radar' | |
VITE_BASE_PATH: '/technology-radar' | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist |