Skip to content

Commit

Permalink
test windows packaging
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Kolberg <[email protected]>
  • Loading branch information
amdprophet committed Oct 2, 2023
1 parent 6a46811 commit d99c305
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ jobs:
${{ steps.get-cache-key.outputs.restore-keys }}
- name: Set default BUILDER_BIN_PATH
if: ${{ ! inputs.fips && (! inputs.only-if-changed || steps.changed-files.outputs.any_changed == 'true') }}
if: ${{ ! (inputs.fips && contains(inputs.arch_os, 'linux')) && (! inputs.only-if-changed || steps.changed-files.outputs.any_changed == 'true') }}
run: echo "BUILDER_BIN_PATH=${HOME}/bin" >> $GITHUB_ENV

- name: Add opentelemetry-collector-builder installation dir to PATH
if: ${{ ! (inputs.fips && contains(inputs.arch_os, 'linux')) && (! inputs.only-if-changed || steps.changed-files.outputs.any_changed == 'true') }}
run: echo "$BUILDER_BIN_PATH" >> $GITHUB_PATH

- name: Install opentelemetry-collector-builder
if: ${{ inputs.fips && contains(inputs.arch_os, 'linux') && (! inputs.only-if-changed || steps.changed-files.outputs.any_changed == 'true') }}
if: ${{ ! (inputs.fips && contains(inputs.arch_os, 'linux')) && contains(inputs.arch_os, 'linux') && (! inputs.only-if-changed || steps.changed-files.outputs.any_changed == 'true') }}
run: make install-builder
working-directory: ./otelcolbuilder

Expand Down

0 comments on commit d99c305

Please sign in to comment.