Skip to content

Commit

Permalink
Replace docker-run-action with plain docker run call (#1940)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcholakov authored Sep 9, 2024
1 parent 74d7363 commit f8a1200
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,14 @@ jobs:

- name: Compile Linux binaries
if: ${{ matrix.build.os == 'ubuntu-latest' }}
uses: addnab/docker-run-action@v3
with:
image: ghcr.io/restatedev/dev-tools:latest
options: -v ${{ github.workspace }}:/restate -w /restate -e ACTIONS_CACHE_URL -e ACTIONS_RUNTIME_TOKEN -e SCCACHE_GHA_ENABLED
run: |
run: |
docker run --rm \
-v ${{ github.workspace }}:/restate \
-w /restate \
-e ACTIONS_CACHE_URL \
-e ACTIONS_RUNTIME_TOKEN \
-e SCCACHE_GHA_ENABLED \
ghcr.io/restatedev/dev-tools:latest \
cargo build --release --bins --target ${{ matrix.build.target }}
- name: Sign binaries
Expand Down

0 comments on commit f8a1200

Please sign in to comment.