/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
.github/workflows/guide.yml
32 строки
1 KB
Italo José
Merge pull request #14112 from meteor/release-3.5
02 июл 2026, 15:46
Не верифицирован
02 июл 2026, 15:46
ebbdd06
Код
Авторство
О чём код?
name: Meteor Guide PR on: pull_request: paths: - 'guide/**/*' jobs: preview: runs-on: ubuntu-latest defaults: run: working-directory: guide/ steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 24.x - name: Build the Guide run: npm ci && npm run build - name: Deploy to Netlify for preview uses: nwtgck/actions-netlify@v4.0.0 with: publish-dir: './guide/public' production-branch: devel github-token: ${{ secrets.GITHUB_TOKEN }} deploy-message: Deploy from GitHub Actions ${{ github.event.pull_request.title }} netlify-config-path: './guide/netlify.toml' alias: deploy-preview-${{ github.event.number }} enable-pull-request-comment: false enable-commit-comment: false env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_GUIDE_SITE_ID }}