Debug file extraction
Some checks failed
Publish Docker image / Push Docker image to the registry (push) Failing after 5m41s
Some checks failed
Publish Docker image / Push Docker image to the registry (push) Failing after 5m41s
This commit is contained in:
parent
4464f15c96
commit
65219410ff
8
.github/workflows/docker-image.yml
vendored
8
.github/workflows/docker-image.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
|||
- name: Check out the repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Build and push Docker image (aarch64)
|
||||
- name: Build Docker image (aarch64)
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
|
@ -20,9 +20,9 @@ jobs:
|
|||
id: build-aarch64
|
||||
|
||||
- name: Extract file (aarch64)
|
||||
run: ID=$(docker create ${{ steps.build-aarch64.outputs.imageid }}) 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 }}) echo $ID; docker cp $ID:/opt/app/target/release/libbliss_js.so index-aarch64-unknown-linux-gnu.node; docker rm $ID
|
||||
|
||||
- name: Build and push Docker image (x86_64)
|
||||
- name: Build Docker image (x86_64)
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
|
@ -30,7 +30,7 @@ jobs:
|
|||
id: build-x86_64
|
||||
|
||||
- name: Extract file (x86_64)
|
||||
run: ID=$(docker create ${{ steps.build-x86_64.outputs.imageid }}) 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 }}) 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