Skip to content

Commit a5764ec

Browse files
Fix
1 parent 2956ad9 commit a5764ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
name: ${{ matrix.binary_name }}
101101
path: /tmp/binary
102102

103-
- run: cp /tmp/binary/scip-clang ./scip-clang
103+
- run: cp /tmp/binary/scip-clang ./scip-clang && ls -l ./scip-clang
104104

105105
- name: Build and push by digest
106106
id: build

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:22.04 as indexer
22

33
RUN apt-get update && apt-get install -y curl libc6-dev python3 build-essential ninja-build git cmake
44

5-
COPY scip-clang /usr/bin/scip-clang
5+
COPY ./scip-clang /usr/bin/scip-clang
66
RUN chmod +x /usr/bin/scip-clang && chown $(whoami) /usr/bin/scip-clang
77

88
WORKDIR /sources

0 commit comments

Comments
 (0)