Skip to content

Commit d145b0b

Browse files
authored
Remove org path from artifact build command (#158)
* Remove org path - Use explicit package name instead of full org path - Move docker build flow above npm package in terms of priority Signed-off-by: Nana-EC <[email protected]>
1 parent f8d6053 commit d145b0b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/release-production.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,6 @@ jobs:
3232
- name: Set up Docker Buildx
3333
uses: docker/setup-buildx-action@v2
3434

35-
- name: Produce artifact
36-
run: tar -czf ${{ github.repository }}.tgz -C ./packages .
37-
38-
- name: Upload artifact
39-
uses: actions/upload-artifact@v2
40-
with:
41-
name: ${{ env.MODULE }}
42-
path: ./*.tgz
43-
if-no-files-found: error
44-
4535
- name: Build and push images
4636
uses: docker/build-push-action@v2
4737
with:
@@ -50,3 +40,13 @@ jobs:
5040
platforms: linux/amd64, linux/arm64
5141
push: true
5242
tags: ${{ env.REGISTRY }}/${{ github.repository }}:${{env.TAG}}
43+
44+
- name: Produce artifact
45+
run: tar -czf hedera-json-rpc-relay.tgz -C ./packages .
46+
47+
- name: Upload artifact
48+
uses: actions/upload-artifact@v2
49+
with:
50+
name: ${{ env.MODULE }}
51+
path: ./*.tgz
52+
if-no-files-found: error

0 commit comments

Comments
 (0)