Skip to content

Commit

Permalink
Fix artifact name [SAME VERSION] (#280)
Browse files Browse the repository at this point in the history
* fix artifact name [SAME VERSION]

* only run for main
  • Loading branch information
bfjelds authored Mar 19, 2021
1 parent 55b2b0f commit 877fb0e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-agent-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Build Agent
on:
workflow_run:
workflows: ["Build Production Rust Code"]
branches: [main]
types:
- completed

Expand Down Expand Up @@ -44,12 +45,12 @@ jobs:
workflow: ${{ github.event.workflow_run.workflow_id }}
workflow_conclusion: success
commit: ${{ github.event.workflow_run.head_sha }}
name: rust-${{ matrix.arch.label }}-binaries
name: rust-${{ matrix.arch }}-binaries
path: /tmp

- name: Unpack Rust binaries
run: |
tar -xvf /tmp/rust-${{ matrix.arch.label }}-binaries.tar
tar -xvf /tmp/rust-${{ matrix.arch }}-binaries.tar
- name: Run Per-Arch component build for ${{ env.AKRI_COMPONENT }}
uses: ./.github/actions/build-component-per-arch
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-controller-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Build Controller
on:
workflow_run:
workflows: ["Build Production Rust Code"]
branches: [main]
types:
- completed

Expand Down Expand Up @@ -43,12 +44,12 @@ jobs:
workflow: ${{ github.event.workflow_run.workflow_id }}
workflow_conclusion: success
commit: ${{ github.event.workflow_run.head_sha }}
name: rust-${{ matrix.arch.label }}-binaries
name: rust-${{ matrix.arch }}-binaries
path: /tmp

- name: Unpack Rust binaries
run: |
tar -xvf /tmp/rust-${{ matrix.arch.label }}-binaries.tar
tar -xvf /tmp/rust-${{ matrix.arch }}-binaries.tar
- name: Run Per-Arch component build for ${{ env.AKRI_COMPONENT }}
uses: ./.github/actions/build-component-per-arch
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-udev-video-broker-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Build UDEV Broker
on:
workflow_run:
workflows: ["Build Production Rust Code"]
branches: [main]
types:
- completed

Expand Down Expand Up @@ -44,12 +45,12 @@ jobs:
workflow: ${{ github.event.workflow_run.workflow_id }}
workflow_conclusion: success
commit: ${{ github.event.workflow_run.head_sha }}
name: rust-${{ matrix.arch.label }}-binaries
name: rust-${{ matrix.arch }}-binaries
path: /tmp

- name: Unpack Rust binaries
run: |
tar -xvf /tmp/rust-${{ matrix.arch.label }}-binaries.tar
tar -xvf /tmp/rust-${{ matrix.arch }}-binaries.tar
- name: Run Per-Arch component build for ${{ env.AKRI_COMPONENT }}
uses: ./.github/actions/build-component-per-arch
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-webhook-configuration-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Build Webhook Configuration
on:
workflow_run:
workflows: ["Build Production Rust Code"]
branches: [main]
types:
- completed

Expand Down Expand Up @@ -43,12 +44,12 @@ jobs:
workflow: ${{ github.event.workflow_run.workflow_id }}
workflow_conclusion: success
commit: ${{ github.event.workflow_run.head_sha }}
name: rust-${{ matrix.arch.label }}-binaries
name: rust-${{ matrix.arch }}-binaries
path: /tmp

- name: Unpack Rust binaries
run: |
tar -xvf /tmp/rust-${{ matrix.arch.label }}-binaries.tar
tar -xvf /tmp/rust-${{ matrix.arch }}-binaries.tar
- name: Run Per-Arch component build for ${{ env.AKRI_COMPONENT }}
uses: ./.github/actions/build-component-per-arch
Expand Down

0 comments on commit 877fb0e

Please sign in to comment.