Skip to content

Commit

Permalink
Update Build Action and Injection
Browse files Browse the repository at this point in the history
  • Loading branch information
nailujx86 committed Jun 21, 2024
1 parent c67917f commit d0275a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
buildPlugin:
uses: ./.github/workflows/buildPlugin.yml
repackageAndUploadArtifact:
name: Upload build artifact
runs-on: ubuntu-24.04
needs:
- buildPlugin
Expand All @@ -18,6 +19,10 @@ jobs:
with:
name: ${{ needs.buildPlugin.outputs.artifactName }}
path: ${{ github.workspace }}/plugin
- name: Delete plugin artifact
uses: geekyeggo/delete-artifact@v5
with:
name: ${{ needs.buildPlugin.outputs.artifactName }}
- name: Unpack unsigned plugin for repackaging
shell: bash
run: |
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/buildPlugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
name: CI

on:
workflow_call:
outputs:
Expand All @@ -10,6 +8,7 @@ on:

jobs:
buildPlugin:
name: Build plugin
runs-on: ubuntu-24.04
outputs:
version: ${{ steps.environment.outputs.version }}
Expand Down

0 comments on commit d0275a9

Please sign in to comment.