web/flows: Do not show the "log back in" button if the url is blank #13383
Workflow file for this run
This file contains hidden or 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: CI - API Docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - next | |
| - version-* | |
| pull_request: | |
| branches: | |
| - main | |
| - version-* | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| command: | |
| - prettier-check | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5 | |
| - name: Install Dependencies | |
| working-directory: website/ | |
| run: npm ci | |
| - name: Lint | |
| working-directory: website/ | |
| run: npm run ${{ matrix.command }} | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5 | |
| - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v5 | |
| with: | |
| node-version-file: website/package.json | |
| cache: "npm" | |
| cache-dependency-path: website/package-lock.json | |
| - working-directory: website/ | |
| name: Install Dependencies | |
| run: npm ci | |
| - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4 | |
| with: | |
| path: | | |
| ${{ github.workspace }}/website/api/.docusaurus | |
| ${{ github.workspace }}/website/api/**/.cache | |
| key: | | |
| ${{ runner.os }}-docusaurus-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} | |
| restore-keys: | | |
| ${{ runner.os }}-docusaurus-${{ hashFiles('**/package-lock.json') }} | |
| - name: Build API Docs via Docusaurus | |
| working-directory: website | |
| env: | |
| NODE_ENV: production | |
| run: npm run build -w api | |
| - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v4 | |
| with: | |
| name: api-docs | |
| path: website/api/build | |
| retention-days: 7 | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - lint | |
| - build | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5 | |
| - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v5 | |
| with: | |
| name: api-docs | |
| path: website/api/build | |
| - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v5 | |
| with: | |
| node-version-file: website/package.json | |
| cache: "npm" | |
| cache-dependency-path: website/package-lock.json | |
| - name: Deploy Netlify (Production) | |
| working-directory: website/api | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
| env: | |
| NETLIFY_SITE_ID: authentik-api-docs.netlify.app | |
| NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
| run: npx netlify deploy --no-build --prod | |
| - name: Deploy Netlify (Preview) | |
| if: github.event_name == 'pull_request' || github.ref != 'refs/heads/main' | |
| working-directory: website/api | |
| env: | |
| NETLIFY_SITE_ID: authentik-api-docs.netlify.app | |
| NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
| run: | | |
| if [ -n "${VAR}" ]; then | |
| npx netlify deploy --no-build --alias=deploy-preview-${{ github.event.number }} | |
| fi |