4 Commits

Author SHA1 Message Date
08e5bea4ca fix
All checks were successful
release / release-slim (push) Successful in 3m43s
release / release-default (push) Successful in 4m22s
2024-12-28 15:11:43 +13:00
5c6a9dbe68 add fork notice
Some checks failed
release / release-slim (push) Failing after 2m17s
release / release-default (push) Has been cancelled
2024-12-28 15:08:43 +13:00
e2d4fab2da publish to gitea server
Some checks failed
release / release-default (push) Failing after 5m0s
release / release-slim (push) Failing after 5m15s
2024-12-28 15:02:20 +13:00
Lunny Xiao
bc8fdcf515 Add ubuntu 24.04 images
Some checks failed
release / release-default (push) Has been cancelled
release / release-slim (push) Has been cancelled
release / release-full (push) Has been cancelled
Signed-off-by: Lucas Petrino <nsx1lucas@gmail.com>
2024-12-28 14:57:25 +13:00
2 changed files with 18 additions and 54 deletions

View File

@@ -27,6 +27,7 @@ jobs:
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: git.119.224.65.18.sslip.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -54,9 +55,9 @@ jobs:
IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }}
IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }}
tags: |
gitea/runner-images:ubuntu-24.04
gitea/runner-images:ubuntu-24.04-${{ steps.meta.outputs.IMAGE_VERSION }}
gitea/runner-images:ubuntu-latest
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-24.04
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-24.04-${{ steps.meta.outputs.IMAGE_VERSION }}
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-latest
- name: Build and push default 22.04
uses: docker/build-push-action@v6
@@ -75,8 +76,8 @@ jobs:
IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }}
IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }}
tags: |
gitea/runner-images:ubuntu-22.04
gitea/runner-images:ubuntu-22.04-${{ steps.meta.outputs.IMAGE_VERSION }}
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-22.04
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-22.04-${{ steps.meta.outputs.IMAGE_VERSION }}
- name: Build and push default 20.04
uses: docker/build-push-action@v6
@@ -95,8 +96,8 @@ jobs:
IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }}
IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }}
tags: |
gitea/runner-images:ubuntu-20.04
gitea/runner-images:ubuntu-20.04-${{ steps.meta.outputs.IMAGE_VERSION }}
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-20.04
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-20.04-${{ steps.meta.outputs.IMAGE_VERSION }}
release-slim:
runs-on: ubuntu-latest
@@ -117,6 +118,7 @@ jobs:
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: git.119.224.65.18.sslip.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -144,9 +146,9 @@ jobs:
IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }}
IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }}
tags: |
gitea/runner-images:ubuntu-24.04-slim
gitea/runner-images:ubuntu-24.04-slim-${{ steps.meta.outputs.IMAGE_VERSION }}
gitea/runner-images:ubuntu-latest-slim
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-24.04-slim
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-24.04-slim-${{ steps.meta.outputs.IMAGE_VERSION }}
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-latest-slim
- name: Build and push slim 22.04
uses: docker/build-push-action@v6
@@ -165,8 +167,8 @@ jobs:
IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }}
IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }}
tags: |
gitea/runner-images:ubuntu-22.04-slim
gitea/runner-images:ubuntu-22.04-slim-${{ steps.meta.outputs.IMAGE_VERSION }}
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-22.04-slim
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-22.04-slim-${{ steps.meta.outputs.IMAGE_VERSION }}
- name: Build and push slim 20.04
uses: docker/build-push-action@v6
@@ -185,45 +187,5 @@ jobs:
IMAGE_CREATED=${{ steps.meta.outputs.IMAGE_CREATED }}
IMAGE_REVISION=${{ steps.meta.outputs.IMAGE_REVISION }}
tags: |
gitea/runner-images:ubuntu-20.04-slim
gitea/runner-images:ubuntu-20.04-slim-${{ steps.meta.outputs.IMAGE_VERSION }}
release-full:
runs-on: ubuntu-latest
container:
image: gitea/runner-images:ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get Meta
id: meta
run: |
echo IMAGE_CREATED=$(date -u +'%Y-%m-%dT%H:%M:%SZ') | tee -a $GITHUB_OUTPUT
echo IMAGE_VERSION=$(date -u +'v%y.%m.%d') | tee -a $GITHUB_OUTPUT
echo IMAGE_REVISION=$(git rev-parse HEAD) | tee -a $GITHUB_OUTPUT
- name: Install skopeo
run: |
apt-get update
apt-get install -y skopeo
- name: Copy full 24.04
run: |
for dest in ubuntu-24.04-full ubuntu-24.04-full-${{ steps.meta.outputs.IMAGE_VERSION }} ubuntu-latest-full; do
echo "copy catthehacker/ubuntu:full-24.04 -> gitea/runner-images:$dest"
skopeo copy -a --dest-creds ${{ secrets.DOCKER_USERNAME }}:${{ secrets.DOCKER_PASSWORD }} docker://ghcr.io/catthehacker/ubuntu:full-24.04 docker://gitea/runner-images:$dest
done
- name: Copy full 22.04
run: |
for dest in ubuntu-22.04-full ubuntu-22.04-full-${{ steps.meta.outputs.IMAGE_VERSION }}; do
echo "copy catthehacker/ubuntu:full-22.04 -> gitea/runner-images:$dest"
skopeo copy -a --dest-creds ${{ secrets.DOCKER_USERNAME }}:${{ secrets.DOCKER_PASSWORD }} docker://ghcr.io/catthehacker/ubuntu:full-22.04 docker://gitea/runner-images:$dest
done
- name: Copy full 20.04
run: |
for dest in ubuntu-20.04-full ubuntu-20.04-full-${{ steps.meta.outputs.IMAGE_VERSION }}; do
echo "copy catthehacker/ubuntu:full-20.04 -> gitea/runner-images:$dest"
skopeo copy -a --dest-creds ${{ secrets.DOCKER_USERNAME }}:${{ secrets.DOCKER_PASSWORD }} docker://ghcr.io/catthehacker/ubuntu:full-20.04 docker://gitea/runner-images:$dest
done
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-20.04-slim
git.119.224.65.18.sslip.io/siteorg/runner-images:ubuntu-20.04-slim-${{ steps.meta.outputs.IMAGE_VERSION }}

View File

@@ -1,3 +1,5 @@
This is a fork of https://gitea.com/gitea/runner-images with Ubuntu 24.04 support from the patch here: https://gitea.com/gitea/runner-images/pulls/17 that has not yet been merged.
# Runner Images
![docker pulls](https://img.shields.io/docker/pulls/gitea/runner-images?logo=docker&label=pulls)