Skip to content

Commit 7cd6485

Browse files
committed
Update after move to new GitHub org
Signed-off-by: Stephen Curran <swcurran@gmail.com>
1 parent e0edad2 commit 7cd6485

4 files changed

Lines changed: 14 additions & 12 deletions

File tree

.github/actions/get-release-info/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "Get Release Info"
2-
description: "Gets the release version and meta data from a string containing a verison number in the form <Major>.<Minor>.<Patch>[[-]rc<Num>]."
2+
description: "Gets the release version and meta data from a string containing a version number in the form <Major>.<Minor>.<Patch>[[-]rc<Num>]."
33

44
inputs:
55
versionString:

.github/workflows/buildpackages.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424

25-
# hyperledger/indy-shared-gha/.github/actions/set-version uses timestamps for development package versioning.
25+
# hyperledger-indy/indy-shared-gha/.github/actions/set-version uses timestamps for development package versioning.
2626
# Make sure the version is only calculated once for consistency.
2727
set-version:
2828
name: Set Version
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Set Build Version
4040
id: version
41-
uses: hyperledger/indy-shared-gha/.github/actions/set-version@v2
41+
uses: hyperledger-indy/indy-shared-gha/.github/actions/set-version@v2
4242
with:
4343
moduleName: ${{ inputs.moduleName }}
4444
isDev: ${{ inputs.isDev }}
@@ -97,7 +97,7 @@ jobs:
9797
9898
- name: Set Build Version
9999
id: version
100-
uses: hyperledger/indy-shared-gha/.github/actions/set-version@v2
100+
uses: hyperledger-indy/indy-shared-gha/.github/actions/set-version@v2
101101
with:
102102
moduleName: ${{ inputs.moduleName }}
103103
isDev: ${{ inputs.isDev }}

.github/workflows/publish_artifacts.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
path: to_publish
5353

5454
- name: Publish Artifacts
55-
uses: hyperledger/indy-shared-gha/.github/actions/publish-deb@v2
55+
uses: hyperledger-indy/indy-shared-gha/.github/actions/publish-deb@v2
5656
with:
5757
sourceDirectory: ./to_publish
5858
distribution: ${{ inputs.distribution }}
@@ -65,7 +65,7 @@ jobs:
6565
path: ./third-party-dependencies_to_publish
6666

6767
- name: Publish 3rd Party Dependencies
68-
uses: hyperledger/indy-shared-gha/.github/actions/publish-deb@v2
68+
uses: hyperledger-indy/indy-shared-gha/.github/actions/publish-deb@v2
6969
with:
7070
sourceDirectory: ./third-party-dependencies_to_publish
7171
distribution: ${{ inputs.distribution }}

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ This repository contains reusable workflows and actions used by the Indy project
77
To use an action from this repository specify the `uses:` in the following manner:
88

99
Example:
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:
2021
To use an workflow from this repository specify the `uses:` in the following manner:
2122

2223
Example:
23-
```
24+
25+
```yaml
2426
jobs:
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 }}
@@ -45,7 +47,7 @@ jobs:
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

Comments
 (0)