Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Jun 24, 2023
1 parent e33547e commit b302112
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-release2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: create release folder
run: mkdir release
- name: Building using the builder image
run: sudo docker run --rm -v "$(pwd)/release":/repo/release 23.05 /src/tools/build-release.sh --inside-docker "$VERSION-$platform"
run: sudo docker run --rm -v "$(pwd)/release":/repo/release cl-repro-bionic /src/tools/build-release.sh --inside-docker "$VERSION-$platform"
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -34,7 +34,7 @@ jobs:
- name: create release folder
run: mkdir release
- name: Building using the builder image
run: sudo docker run --rm -v "$(pwd)/release":/repo/release 23.05 /src/tools/build-release.sh --inside-docker "$VERSION-$platform"
run: sudo docker run --rm -v "$(pwd)/release":/repo/release cl-repro-focal /src/tools/build-release.sh --inside-docker "$VERSION-$platform"
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -56,7 +56,7 @@ jobs:
- name: create release folder
run: mkdir release
- name: Building using the builder image
run: sudo docker run --rm -v "$(pwd)/release":/repo/release 23.05 /src/tools/build-release.sh --inside-docker "$VERSION-$platform"
run: sudo docker run --rm -v "$(pwd)/release":/repo/release cl-repro-jammy /src/tools/build-release.sh --inside-docker "$VERSION-$platform"
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-release3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: create release folder
run: mkdir release
- name: Building using the builder image
run: sudo docker run --rm -v $(pwd)/release:/repo/release -ti cl-repro-bionic
run: sudo docker run --rm -v $(pwd)/release:/repo/release -t cl-repro-bionic
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -34,7 +34,7 @@ jobs:
- name: create release folder
run: mkdir release
- name: Building using the builder image
run: sudo docker run --rm -v $(pwd)/release:/repo/release -ti cl-repro-bionic
run: sudo docker run --rm -v $(pwd)/release:/repo/release -t cl-repro-bionic
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -56,7 +56,7 @@ jobs:
- name: create release folder
run: mkdir release
- name: Building using the builder image
run: sudo docker run --rm -v $(pwd)/release:/repo/release -ti cl-repro-bionic
run: sudo docker run --rm -v $(pwd)/release:/repo/release -t cl-repro-bionic
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion tools/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ for target in $TARGETS; do
# Capitalize the first letter of distro
D=$(echo "$d" | awk '{print toupper(substr($0,1,1))substr($0,2)}')
echo "Building Ubuntu $D Image"
docker run --rm -v "$(pwd)":/build -e FORCE_MTIME="$MTIME" -e FORCE_VERSION="$VERSION" -ti cl-repro-"$d"
docker run --rm -v "$(pwd)":/build -e FORCE_MTIME="$MTIME" -e FORCE_VERSION="$VERSION" -t cl-repro-"$d"
echo "Ubuntu $D Image Built"
done
;;
Expand Down

0 comments on commit b302112

Please sign in to comment.