@@ -7,10 +7,11 @@ This repository contains reusable workflows and actions used by the Indy project
77To use an action from this repository specify the ` uses: ` in the following manner:
88
99Example:
10- ```
10+
11+ ``` yaml
1112- name : get-release-info
1213 id : get-release-info
13- uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v0.1
14+ uses : hyperledger-indy /indy-shared-gha/.github/actions/get-release-info@v0.1
1415 with :
1516 versionString : " ${{ github.event.pull_request.body }}"
1617` ` `
@@ -20,7 +21,8 @@ Example:
2021To use an workflow from this repository specify the ` uses:` in the following manner:
2122
2223Example :
23- ```
24+
25+ ` ` ` yaml
2426jobs:
2527
2628 ...
@@ -29,13 +31,13 @@ jobs:
2931 name: Lint
3032 needs: [release-infos]
3133 if: needs.infos.outputs.isVersionBump == 'true'
32- uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml
34+ uses: hyperledger-indy /indy-shared-gha/.github/workflows/lint.yaml
3335
3436 build-docker-image:
3537 name: Create Builder Image
3638 needs: [lint, release-infos]
3739 if: needs.infos.outputs.isVersionBump == 'true'
38- uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml
40+ uses: hyperledger-indy /indy-shared-gha/.github/workflows/buildimage.yaml
3941 with:
4042 CACHE_KEY_BUILD: ${{ needs.workflow-setup.outputs.CACHE_KEY_BUILD }}
4143 GITHUB_REPOSITORY_NAME: ${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}
4547 name: Build Packages
4648 needs: [release-infos, plenum_tests]
4749 if: needs.infos.outputs.isVersionBump == 'true'
48- uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml
50+ uses: hyperledger-indy /indy-shared-gha/.github/workflows/buildpackages.yaml
4951 with:
5052 GITHUB_REPOSITORY_NAME: ${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}
5153 UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
0 commit comments