Skip to content

Commit

Permalink
updating scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatson committed Aug 27, 2024
1 parent 9a43aca commit cc4fae7
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,15 @@ jobs:
- name: list files
run: find target/cross/

- name: generate-archive-key
id: gen_artifact_key
run: |
echo "key=$(echo ${{ matrix.platform }} | tr '/' '-')" >> "$GITHUB_OUTPUT"
- name: Archive target/cross/
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}
name: ${{ steps.gen_artifact_key.outputs.key }}
path: target/cross/${{ matrix.platform }}/rqbit

build-push-docker-multiarch:
Expand All @@ -70,17 +75,17 @@ jobs:

- uses: actions/download-artifact@v4
with:
name: linux/arm/v7
name: linux-arm-v7
path: target/cross/linux/arm/v7/rqbit

- uses: actions/download-artifact@v4
with:
name: linux/arm64
name: linux-arm64
path: target/cross/linux/arm64/rqbit

- uses: actions/download-artifact@v4
with:
name: linux/amd64
name: linux-amd64
path: target/cross/linux/amd64/rqbit

- name: Set up Docker Buildx
Expand Down

0 comments on commit cc4fae7

Please sign in to comment.