Debug file extraction
Some checks failed
Publish Docker image / Push Docker image to the registry (push) Failing after 43m40s
Some checks failed
Publish Docker image / Push Docker image to the registry (push) Failing after 43m40s
This commit is contained in:
parent
65219410ff
commit
56e7931a48
4
.github/workflows/docker-image.yml
vendored
4
.github/workflows/docker-image.yml
vendored
@ -20,7 +20,7 @@ jobs:
|
||||
id: build-aarch64
|
||||
|
||||
- name: Extract file (aarch64)
|
||||
run: ID=$(docker create ${{ steps.build-aarch64.outputs.imageid }}) echo $ID; docker cp $ID:/opt/app/target/release/libbliss_js.so index-aarch64-unknown-linux-gnu.node; docker rm $ID
|
||||
run: ID=$(docker create ${{ steps.build-aarch64.outputs.imageid }}) bash -c 'echo $ID; docker cp $ID:/opt/app/target/release/libbliss_js.so index-aarch64-unknown-linux-gnu.node; docker rm $ID'
|
||||
|
||||
- name: Build Docker image (x86_64)
|
||||
uses: docker/build-push-action@v5
|
||||
@ -30,7 +30,7 @@ jobs:
|
||||
id: build-x86_64
|
||||
|
||||
- name: Extract file (x86_64)
|
||||
run: ID=$(docker create ${{ steps.build-x86_64.outputs.imageid }}) echo $ID; docker cp $ID:/opt/app/target/release/libbliss_js.so index-x86_64-unknown-linux-gnu.node; docker rm $ID
|
||||
run: ID=$(docker create ${{ steps.build-x86_64.outputs.imageid }}) bash -c 'echo $ID; docker cp $ID:/opt/app/target/release/libbliss_js.so index-x86_64-unknown-linux-gnu.node; docker rm $ID'
|
||||
|
||||
- name: Log in to NPM
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user