Skip to content

Commit 955b143

Browse files
authored
Merge pull request #22 from opengovern/fix-folder-reorganization
fix: fix github action
2 parents 3a33185 + 0c81b19 commit 955b143

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ jobs:
6262
working-directory: ./describer
6363
run: make build-describer
6464
- name: Pack Local Describer Build
65-
working-directory: .
65+
working-directory: ./describer
6666
run: |
6767
tar -cvf local.tar local
6868
- name: Upload Local Artifact
6969
uses: actions/upload-artifact@v3
7070
with:
7171
name: local-og-describer-github
72-
path: ./local.tar
72+
path: ./describer/local.tar
7373
retention-days: 1
7474
- name: Build Integration Plugin
7575
working-directory: ./plugin/integration
@@ -153,10 +153,10 @@ jobs:
153153
uses: actions/download-artifact@v3
154154
with:
155155
name: local-og-describer-github
156-
path: .
156+
path: ./describer
157157
- name: Unpack Local Describer Artifact
158158
run: |
159-
tar -xvf local.tar
159+
tar -xvf ./describer/local.tar -C ./describer
160160
- name: Log in to Container Registry
161161
uses: docker/login-action@v2
162162
with:

0 commit comments

Comments
 (0)