File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5555 password : ${{ secrets.GITHUB_TOKEN }}
5656
5757 - name : Extract metadata for Docker
58- id : meta-website
58+ id : meta-image
5959 uses : docker/metadata-action@v5
6060 with :
6161 images : ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
6464 type=raw,value=latest,enable={{is_default_branch}}
6565
6666 - name : Build and push Docker image
67- id : push-website
67+ id : push-image
6868 uses : docker/build-push-action@v6
6969 with :
7070 context : .
Original file line number Diff line number Diff line change @@ -8,14 +8,15 @@ RUN apt-get update && apt-get install -y \
88 build-essential \
99 pkg-config \
1010 libssl-dev \
11+ libudev-dev \
1112 && apt-get clean \
1213 && rm -rf /var/lib/apt/lists/*
1314
1415# Switch to runner user and install Rust
1516USER runner
1617RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable \
1718 && /home/runner/.cargo/bin/rustup component add clippy rustfmt \
18- && /home/runner/.cargo/bin/rustup target add x86_64-unknown-linux-musl
19+ && /home/runner/.cargo/bin/rustup target add x86_64-unknown-linux-gnu
1920
2021# Add Rust to PATH for runner user
2122ENV PATH="/home/runner/.cargo/bin:${PATH}"
You can’t perform that action at this time.
0 commit comments