Skip to content

Commit

Permalink
fix: Rename build outputs to have clear meaning
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanRynne authored Aug 14, 2024
1 parent 74d8a3c commit ffcd342
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:
pull_request:
workflow_call:
outputs:
version:
semver:
description: "The computed version number for this run"
value: ${{ jobs.build.outputs.version }}
info_version:
file_version:
description: "The assembly info version for this run"
value: ${{ jobs.build.outputs.info_version }}
jobs:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
compression-level: 0 # no compression
- id: set-version
name: Set version to output
run: echo "version=${{steps.gitversion.outputs.semVer}}" >> "$GITHUB_OUTPUT" # version will be retrieved from tag?
run: echo "semver=${{steps.gitversion.outputs.semVer}}" >> "$GITHUB_OUTPUT" # version will be retrieved from tag?
- id: set-info-version
name: Set version to output
run: echo "info-version=${{steps.gitversion.outputs.AssemblySemVer}}" >> "$GITHUB_OUTPUT" # version will be retrieved from tag?
run: echo "file-version=${{steps.gitversion.outputs.AssemblySemVer}}" >> "$GITHUB_OUTPUT" # version will be retrieved from tag?
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
workflow: Build Sketchup
repo: specklesystems/connector-installers
token: ${{ secrets.CONNECTORS_GH_TOKEN }}
inputs: '{ "run_id": "${{ github.run_id }}", "version": "${{ needs.build.outputs.version }}", "info_version": "${{ needs.build.outputs.info_version }}" }'
inputs: '{ "run_id": "${{ github.run_id }}", "semver": "${{ needs.build.outputs.semver }}", "file_version": "${{ needs.build.outputs.file_version }}" }'
ref: sketchup-installer-fix
wait-for-completion: true
wait-for-completion-interval: 10s
Expand Down

0 comments on commit ffcd342

Please sign in to comment.