Skip to content

Commit 6604cbc

Browse files
committed
fix: builds
1 parent 0b0595c commit 6604cbc

File tree

2 files changed

+10
-50
lines changed

2 files changed

+10
-50
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,46 +46,46 @@ jobs:
4646
run: |
4747
git config --global url.https://[email protected]/opengovern.insteadOf https://github.com/opengovern
4848
- name: Build Github Plugin App
49-
working-directory: ./plugin/cloudql
49+
working-directory: ./cloudql
5050
run: make build
5151
- name: Pack Github Plugin Build
52-
working-directory: ./plugin/cloudql
52+
working-directory: ./cloudql
5353
run: |
5454
tar -cvf build.tar build
5555
- name: Upload Github Plugin Artifact
5656
uses: actions/upload-artifact@v3
5757
with:
5858
name: steampipe-plugin-github
59-
path: ./plugin/cloudql/build.tar
59+
path: ./cloudql/build.tar
6060
retention-days: 1
6161
- name: Build Local Describer App
62-
working-directory: ./describer
62+
working-directory: ./discovery
6363
run: make build-describer
6464
- name: Pack Local Describer Build
65-
working-directory: ./describer
65+
working-directory: ./discovery
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: ./describer/local.tar
72+
path: ./discovery/local.tar
7373
retention-days: 1
7474
- name: Build Integration Plugin
75-
working-directory: ./plugin/integration
75+
working-directory: ./platform
7676
run: make build
7777
- name: Create output directory
7878
working-directory: .
7979
run: mkdir -p github-output
8080
- name: Copy steampipe plugin to output directory
8181
working-directory: .
82-
run: cp ./plugin/cloudql/build/steampipe-plugin-github.plugin ./github-output/cloudql-plugin
82+
run: cp ./cloudql/build/steampipe-plugin-github.plugin ./github-output/cloudql-plugin
8383
- name: Copy integration plugin to output directory
8484
working-directory: .
85-
run: cp ./plugin/integration/build/integration-plugin ./github-output/
85+
run: cp ./integration/build/integration-plugin ./github-output/
8686
- name: Copy manifest to output directory
8787
working-directory: .
88-
run: cp ./plugin/integration/manifest.yaml ./github-output/
88+
run: cp ./integration/manifest.yaml ./github-output/
8989
- name: Pack output
9090
working-directory: .
9191
run: |

0 commit comments

Comments
 (0)