diff --git a/.github/workflows/Push.yaml b/.github/workflows/Push.yaml index 5c641a69..4cee3647 100644 --- a/.github/workflows/Push.yaml +++ b/.github/workflows/Push.yaml @@ -42,7 +42,6 @@ jobs: build-image: name: Create Builder Image needs: [workflow-setup] - if: ${{ always() }} uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v1 with: CACHE_KEY_BUILD: ${{ needs.workflow-setup.outputs.CACHE_KEY_BUILD }} @@ -75,3 +74,4 @@ jobs: REPO_COMPONENT: 'rc' secrets: BOT_PR_PAT: ${{ secrets.BOT_PR_PAT }} + SOVRIN_REPO_KEY: ${{ secrets.SOVRIN_REPO_KEY }} diff --git a/.github/workflows/publishRelease.yaml b/.github/workflows/publishRelease.yaml index f81f401a..addcc977 100644 --- a/.github/workflows/publishRelease.yaml +++ b/.github/workflows/publishRelease.yaml @@ -99,4 +99,5 @@ jobs: UBUNTU_VERSION: ${{ needs.release-infos.outputs.UBUNTU_VERSION }} REPO_COMPONENT: ${{ needs.release-infos.outputs.component}} secrets: - BOT_PR_PAT: ${{ secrets.BOT_PR_PAT }} \ No newline at end of file + BOT_PR_PAT: ${{ secrets.BOT_PR_PAT }} + SOVRIN_REPO_KEY: ${{ secrets.SOVRIN_REPO_KEY }} \ No newline at end of file diff --git a/.github/workflows/reuseable_publish.yaml b/.github/workflows/reuseable_publish.yaml index 49ab89a8..098440ea 100644 --- a/.github/workflows/reuseable_publish.yaml +++ b/.github/workflows/reuseable_publish.yaml @@ -15,6 +15,8 @@ on: secrets: BOT_PR_PAT: required: true + SOVRIN_REPO_KEY: + required: true jobs: publish_token_plugin: name: Token Plugin Publish Packages @@ -47,4 +49,4 @@ jobs: path: /tmp/tokendebs/ - name: Publish Packages run: | - ./sovrin-packaging/upload_debs.py /tmp/tokendebs core ${{ inputs.REPO_COMPONENT }} --host repo.sovrin.org --ssh-key ${{ secrets.SOVRIN_REPO_KEY }}" \ No newline at end of file + ./sovrin-packaging/upload_debs.py /tmp/tokendebs core ${{ inputs.REPO_COMPONENT }} --host repo.sovrin.org --ssh-key ${{ secrets.SOVRIN_REPO_KEY }} \ No newline at end of file