mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-12 22:26:08 -04:00
ci: remove netlify develop deployment
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
3aee932736
commit
c368434387
2 changed files with 2 additions and 71 deletions
|
@ -1,65 +0,0 @@
|
||||||
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
||||||
#
|
|
||||||
# SPDX-License-Identifier: AGPL-3.0-only
|
|
||||||
|
|
||||||
name: Frontend / Deploy develop branch to Netlify
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ develop ]
|
|
||||||
|
|
||||||
env:
|
|
||||||
NETLIFY_VERSION: 13.2.2
|
|
||||||
NETLIFY_NEXTJS_PLUGIN_VERSION: 4.33.0
|
|
||||||
NODEJS_VERSION: 20
|
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: frontend
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.job }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Deploys to netlify
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
|
||||||
|
|
||||||
- name: Setup node
|
|
||||||
uses: ./.github/actions/setup-node
|
|
||||||
with:
|
|
||||||
NODEJS_VERSION: ${{ env.NODEJS_VERSION }}
|
|
||||||
|
|
||||||
- name: Patch intro.md to include netlify banner.
|
|
||||||
run: cp netlify/intro.md public/public/intro.md
|
|
||||||
|
|
||||||
- name: Patch motd.md to include privacy policy.
|
|
||||||
run: cp netlify/motd.md public/public/motd.md
|
|
||||||
|
|
||||||
- name: Patch base URL
|
|
||||||
run: echo "HD_BASE_URL=\"https://hedgedoc.dev/\"" >> .env.production
|
|
||||||
|
|
||||||
- name: Build app
|
|
||||||
run: yarn build --filter=frontend
|
|
||||||
shell: bash
|
|
||||||
working-directory: .
|
|
||||||
env:
|
|
||||||
NEXT_PUBLIC_USE_MOCK_API: true
|
|
||||||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
|
|
||||||
TURBO_API: ${{ vars.TURBO_API }}
|
|
||||||
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
|
|
||||||
|
|
||||||
- name: Remove Next.js cache to avoid it being deployed
|
|
||||||
run: rm -r .next/cache
|
|
||||||
|
|
||||||
- name: Install netlify CLI
|
|
||||||
run: "yarn add --dev netlify-cli@${{ env.NETLIFY_VERSION }} @netlify/plugin-nextjs@${{ env.NETLIFY_NEXTJS_PLUGIN_VERSION }}"
|
|
||||||
|
|
||||||
- name: Run netlify CLI deployment
|
|
||||||
env:
|
|
||||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
||||||
run: "netlify deploy --build --prod --message \"${{ github.event.head_commit.id }}\""
|
|
|
@ -39,12 +39,8 @@ We are currently working on HedgeDoc 2, a complete rewrite of HedgeDoc. Please n
|
||||||
## Development
|
## Development
|
||||||
Information for setting up a local development environment can be found in the [developer documentation](./docs/content/dev/getting-started.md)
|
Information for setting up a local development environment can be found in the [developer documentation](./docs/content/dev/getting-started.md)
|
||||||
|
|
||||||
## HedgeDoc 2 UI Test
|
## HedgeDoc 2 Alpha
|
||||||
Curious about the new look and feel of HedgeDoc 2? We provide a demo of the new UI on [hedgedoc.dev](https://hedgedoc.dev). This
|
Curious about the new look and feel of HedgeDoc 2? We provide a demo of the alpha on [hedgedoc.dev](https://hedgedoc.dev).
|
||||||
version uses mocked data and has no data persistence.
|
|
||||||
|
|
||||||
The UI test is hosted by [netlify](https://netlify.com). Please check
|
|
||||||
their [privacy policy](https://netlify.com/privacy) as well as [ours](https://hedgedoc.org/privacy-policy).
|
|
||||||
|
|
||||||
## Contributions
|
## Contributions
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue