You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by fa...@apache.org on 2023/01/25 12:55:46 UTC

[incubator-pekko] branch main updated: remove publish-docs job (#111)

This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new 20b943068e remove publish-docs job (#111)
20b943068e is described below

commit 20b943068ec0eea52ecbac103896ef852d35294e
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Wed Jan 25 12:55:40 2023 +0000

    remove publish-docs job (#111)
---
 .github/workflows/publish-docs.yml | 54 --------------------------------------
 1 file changed, 54 deletions(-)

diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml
deleted file mode 100644
index be9304fc75..0000000000
--- a/.github/workflows/publish-docs.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-name: Publish docs
-
-on:
-  push:
-    branches:
-      - master
-      - main
-      # for testing the GH Action without merging to main,
-      # in some cases
-      - test-publish-snapshots
-      - docs/v*
-    tags: ["*"]
-
-jobs:
-  documentation:
-    name: Documentation
-    runs-on: ubuntu-20.04
-    if: github.repository == 'apache/incubator-pekko'
-    steps:
-      - name: Checkout
-        uses: actions/checkout@v3
-        with:
-          # we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
-          fetch-depth: 0
-      - name: Set up JDK 11
-        uses: olafurpg/setup-scala@v13
-        with:
-          java-version: adopt@1.11
-      - name: Publish
-        run: |-
-          eval "$(ssh-agent -s)"
-          echo $SCP_SECRET | base64 -d > /tmp/id_rsa
-          chmod 600 /tmp/id_rsa
-          ssh-add /tmp/id_rsa
-          # using Scala 2.13 here to avoid the infamous problem with missing AskSupport in classpath
-          sbt -Dpekko.genjavadoc.enabled=true "+~ 2.13 publishRsync"
-        env:
-          SCP_SECRET: ${{ secrets.SCP_SECRET }}
-
-      # comment out email actions until we have an email address to use (and we need to get INFRA to whitelist dawidd6/action-send-mail)
-      #- name: Email on failure
-      #  if: ${{ failure() }}
-      #  uses: dawidd6/action-send-mail@v3
-      #  with:
-      #    server_address: smtp.gmail.com
-      #    server_port: 465
-      #    username: ${{secrets.MAIL_USERNAME}}
-      #    password: ${{secrets.MAIL_PASSWORD}}
-      #    subject: "Failed: ${{ github.workflow }} / ${{ github.job }}"
-      #    to: akka.official@gmail.com
-      #    from: Akka CI (GHActions)
-      #    body: |
-      #     Job ${{ github.job }} in workflow ${{ github.workflow }} of ${{github.repository}} failed!
-      #      https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org