Skip to content

Commit

Permalink
fix: update workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
jkdevito committed Oct 1, 2024
1 parent 389b7c5 commit d5d80d1
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/EssentialsPlugins-builds-caller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,19 @@ on:
jobs:
getVersion:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@main
secrets: inherit
secrets: inherit

printOutputs:
runs-on: ubuntu-latest
needs: getVersion
steps:
- name: Print outputs
- name: Print Outputs
run: |
newVersion: "${{ needs.getVersion.outputs.newVersion }}"
version: "${{ needs.getVersion.outputs.version }}"
tag: "${{ needs.getVersion.outputs.tag }}"
channel: "${{ needs.getVersion.outputs.channel }}"
echo "newVersion: ${{ needs.getVersion.outputs.newVersion }}"
echo "version: ${{ needs.getVersion.outputs.version }}"
echo "tag: ${{ needs.getVersion.outputs.tag }}"
echo "channel: ${{ needs.getVersion.outputs.channel }}"
build-3Series:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-3Series-builds.yml@main
secrets: inherit
Expand All @@ -26,6 +31,7 @@ jobs:
version: ${{ needs.getVersion.outputs.version }}
tag: ${{ needs.getVersion.outputs.tag }}
channel: ${{ needs.getVersion.outputs.channel }}

build-4Series:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@main
secrets: inherit
Expand Down

0 comments on commit d5d80d1

Please sign in to comment.