Skip to content

Commit f8a1200

Browse files
authored
Replace docker-run-action with plain docker run call (#1940)
1 parent 74d7363 commit f8a1200

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/binaries.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,14 @@ jobs:
104104

105105
- name: Compile Linux binaries
106106
if: ${{ matrix.build.os == 'ubuntu-latest' }}
107-
uses: addnab/docker-run-action@v3
108-
with:
109-
image: ghcr.io/restatedev/dev-tools:latest
110-
options: -v ${{ github.workspace }}:/restate -w /restate -e ACTIONS_CACHE_URL -e ACTIONS_RUNTIME_TOKEN -e SCCACHE_GHA_ENABLED
111-
run: |
107+
run: |
108+
docker run --rm \
109+
-v ${{ github.workspace }}:/restate \
110+
-w /restate \
111+
-e ACTIONS_CACHE_URL \
112+
-e ACTIONS_RUNTIME_TOKEN \
113+
-e SCCACHE_GHA_ENABLED \
114+
ghcr.io/restatedev/dev-tools:latest \
112115
cargo build --release --bins --target ${{ matrix.build.target }}
113116
114117
- name: Sign binaries

0 commit comments

Comments
 (0)