diff options
author | techknowlogick <techknowlogick@gitea.io> | 2023-05-23 16:41:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-23 20:41:27 +0000 |
commit | 21add7ea88ec61a80f99e3fe95eebea04c8f4506 (patch) | |
tree | 81b624b05d5a880b3bd5a5870923c05a46e8deca /.github | |
parent | 0e84bd251486d0484f7ab4901231858acabf9237 (diff) | |
download | gitea-21add7ea88ec61a80f99e3fe95eebea04c8f4506.tar.gz gitea-21add7ea88ec61a80f99e3fe95eebea04c8f4506.zip |
Remove publish docs CI workflow (#24889)
Now that the redirect to docs.gitea.com is in place this is no longer
needed.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/publish-docs.yml | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml deleted file mode 100644 index de5572a640..0000000000 --- a/.github/workflows/publish-docs.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: publish-docs - -on: - push: - paths: - - "docs/**" - branches: - - main - -jobs: - compliance-docs: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 - with: - go-version: ">=1.20.1" - - name: build docs - run: | - cd docs - make trans-copy clean build - - name: publish to netlify - uses: nwtgck/actions-netlify@v2.0 - with: - production-branch: main - publish-dir: docs/public/ - env: - NETLIFY_SITE_ID: d2260bae-7861-4c02-8646-8f6440b12672 - NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} |