name: ci run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [push] jobs: docker: runs-on: ubuntu-latest container: image: gitea/runner-images:ubuntu-latest steps: - name: Install docker run: | apt-get update apt-get install ca-certificates curl install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings/docker.asc echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null apt-get update apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin - name: Checkout uses: actions/checkout@v4 - name: Docker login run: docker login -u danthe -p Secret666 gitea.goroid.io - name: Build docker container run: docker build -t gitea.goroid.io/danthe/test:latest . - name: Push docker container run: docker push gitea.goroid.io/danthe/test:latest - name: Cleanup old images run: docker image prune -f