diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3c8729c..1530440 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,6 +1,7 @@ name: Publish on: + workflow_dispatch: push: branches: - main @@ -102,12 +103,12 @@ jobs: - name: Key setup env: - GUSTAV_KEY: ${{ secrets.GUSTAV_KEY }} - run: |+ - eval "$(ssh-agent -s)" - echo $GUSTAV_KEY | base64 -di > .github/id_ed2551 - chmod 600 .github/id_ed2551 - ssh-add .github/id_ed2551 + AKKA_RSYNC_GUSTAV: ${{ secrets.AKKA_RSYNC_GUSTAV }} + run: |+ + eval "$(ssh-agent -s)" + echo $AKKA_RSYNC_GUSTAV | base64 -d > .github/id_rsa + chmod 600 .github/id_rsa + ssh-add .github/id_rsa - name: Publish API documentation (tag) if: startsWith(github.event.ref, 'refs/tags/v')