We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74d7363 commit f8a1200Copy full SHA for f8a1200
.github/workflows/binaries.yml
@@ -104,11 +104,14 @@ jobs:
104
105
- name: Compile Linux binaries
106
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: |
+ run: |
+ docker run --rm \
+ -v ${{ github.workspace }}:/restate \
+ -w /restate \
+ -e ACTIONS_CACHE_URL \
112
+ -e ACTIONS_RUNTIME_TOKEN \
113
+ -e SCCACHE_GHA_ENABLED \
114
+ ghcr.io/restatedev/dev-tools:latest \
115
cargo build --release --bins --target ${{ matrix.build.target }}
116
117
- name: Sign binaries
0 commit comments