Skip to content

Commit a2cf588

Browse files
authored
Merge pull request #34 from opengovern/fix-folder-reorganization
Fix folder reorganization
2 parents 8c11937 + e1fc8f9 commit a2cf588

File tree

2 files changed

+12
-34
lines changed

2 files changed

+12
-34
lines changed

.github/workflows/build.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -76,25 +76,25 @@ jobs:
7676
run: make build
7777
- name: Create output directory
7878
working-directory: .
79-
run: mkdir -p github-output
79+
run: mkdir -p github-plugin
8080
- name: Copy steampipe plugin to output directory
8181
working-directory: .
82-
run: cp ./cloudql/build/steampipe-plugin-github.plugin ./github-output/cloudql-plugin
82+
run: cp ./cloudql/build/steampipe-plugin-github.plugin ./github-plugin/cloudql-plugin
8383
- name: Copy integration plugin to output directory
8484
working-directory: .
85-
run: cp ./platform/build/integration-plugin ./github-output/
85+
run: cp ./platform/build/integration-plugin ./github-plugin/
8686
- name: Copy manifest to output directory
8787
working-directory: .
88-
run: cp ./platform/manifest.yaml ./github-output/
88+
run: cp ./platform/manifest.yaml ./github-plugin/
8989
- name: Pack output
9090
working-directory: .
9191
run: |
92-
tar -czf github-output.tar github-output
92+
tar -czf github-plugin.tar github-plugin
9393
- name: Upload github outputs artifact
9494
uses: actions/upload-artifact@v3
9595
with:
96-
name: github-outputs
97-
path: ./github-output.tar
96+
name: github-plugins
97+
path: ./github-plugin.tar
9898
retention-days: 1
9999

100100
- name: Set Latest Tag Output
@@ -186,16 +186,16 @@ jobs:
186186
- name: Download Integration Plugin Artifact
187187
uses: actions/download-artifact@v3
188188
with:
189-
name: github-outputs
189+
name: github-plugins
190190
- name: Unpack Integration Plugin Artifact
191191
run: |
192-
tar -xvf github-output.tar
192+
tar -xvf github-plugin.tar
193193
- name: Pack folder content into a zip file for release
194194
run: |
195-
cd github-output
196-
zip -r github-output.zip .
195+
cd github-plugin
196+
zip -r github-plugin.zip .
197197
- name: Release Integration Plugin
198198
uses: softprops/action-gh-release@v2
199199
with:
200-
files: ./github-output/github-output.zip
200+
files: ./github-plugin/github-plugin.zip
201201
tag_name: ${{ needs.build.outputs.latest_tag }}

cloudql/.gitignore

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)