Skip to content

Commit

Permalink
Fix Github actions (#14)
Browse files Browse the repository at this point in the history
* Migrate to Github action/upload v4

* Add Rust/Cargo required by dependancies

They are not available by default in Alpine 3.20.2
  • Loading branch information
ogimenez-wirepas authored Nov 8, 2024
1 parent 5d27c52 commit 42527b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: echo "WHEEL_FILE=$(ls dist/*-py3-none-any.whl)" >> $GITHUB_ENV

- name: Store artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: ${{ env.WHEEL_FILE }}

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:3.20 AS builder
RUN adduser --disabled-password wirepas

# Install needed software
RUN apk add --no-cache gcc make musl-dev python3-dev py3-pip py3-wheel py3-setuptools
RUN apk add --no-cache gcc make musl-dev python3-dev py3-pip py3-wheel py3-setuptools rust cargo
RUN apk add --no-cache bash

# Copy provisioning server files
Expand Down

0 comments on commit 42527b7

Please sign in to comment.