1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-23 00:16:25 +01:00

chore: delete .github/workflows/generate-docs.yaml ()

This workflow has been disabled for a long time and caused confusion the
other day with Melinda while trying to debug some documentation issue.

Now documentation is published by vercel
This commit is contained in:
Gastón Fournier 2025-03-11 12:06:06 +01:00 committed by GitHub
parent 111a676093
commit e1e7f77b85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,35 +0,0 @@
name: Generate documentation
on:
push:
branches:
- main
paths:
- website/**
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
build:
if: false # disable this job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup git config
run: |
git config --global user.name "${GH_NAME}"
git config --global user.email "${GH_EMAIL}"
echo "machine github.com login ${GH_NAME} password ${GH_TOKEN}" > ~/.netrc
# Stage the file, commit and push
cd website && yarn && GIT_USER="ivarconr" yarn deploy
env:
GH_NAME: 'ivarconr'
GH_EMAIL: 'ivarconr@gmail.com'
GH_TOKEN: ${{ secrets.GH_TOKEN }}
DEPLOYMENT_BRANCH: 'main'
UNLEASH_FEEDBACK_TARGET_URL: ${{ secrets.DOCS_FEEDBACK_TARGET_URL }}
UNLEASH_PROXY_CLIENT_KEY: ${{ secrets.UNLEASH_PROXY_CLIENT_KEY_PRODUCTION }}
UNLEASH_PROXY_URL: ${{ secrets.UNLEASH_PROXY_URL_PRODUCTION }}