feat: Rename container to 'fedora-dev'

This commit is contained in:
sharpenedblade
2023-07-27 19:21:27 +05:30
parent 75550a6798
commit ef87f27e65
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ jobs:
docker run -t --privileged \
-v "$PWD":/repo \
-e PACKAGE \
ghcr.io/t2linux/fedora-kernel-build:latest \
ghcr.io/t2linux/fedora-dev:latest \
/repo/build-packages.sh
env:
PACKAGE: ${{ matrix.package }}
@@ -72,7 +72,7 @@ jobs:
docker run -t \
-v $PWD:/repo \
-e RPM_SIGNING_PRIVATE_KEY_B64 \
ghcr.io/t2linux/fedora-kernel-build:latest \
ghcr.io/t2linux/fedora-dev:latest \
/repo/sign-packages.sh
env:
RPM_SIGNING_PRIVATE_KEY_B64: ${{ secrets.RPM_SIGNING_PRIVATE_KEY_B64 }}
+1 -1
View File
@@ -49,7 +49,7 @@ export PACKAGE="packagenamehere"
Then run the build container, which has dependencies already installed. The packages will be in the `_output` directory:
```
podman run -it -v "$PWD":/repo -e PACKAGE ghcr.io/t2linux/fedora-kernel-build:latest /repo/build-packages.sh
podman run -it -v "$PWD":/repo -e PACKAGE ghcr.io/t2linux/fedora-dev:latest /repo/build-packages.sh
```
## Credits