Files
debian-moustache/.gitea/workflows/docker.yml
T
Ludovic Cartier 5dd9744c1c
docker / docker (push) Failing after 58s
add curl
2025-01-03 20:48:54 +01:00

54 lines
1.4 KiB
YAML

---
name: docker
on:
push:
branches:
- "main"
jobs:
docker:
#runs-on: ubuntu-latest
container:
image: debian:stable-slim
steps:
- name: install prerequisites
run: |
apt update
apt install -yq nodejs git curl
- name: manually install docker-ce-cli
run: |
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
apt update
apt install -yq docker-ce-cli
- uses: actions/checkout@v4
# with:
# repository: 'docker-ci/debian-php8.3.git'
# ref: 'main'
# token: ${{ secrets.DOCKER_API_TOKEN }}
# #fetch-depth: 0
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: git.bbee.fr
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_API_TOKEN }}
- uses: docker/build-push-action@v6
env:
ACTIONS_RUNTIME_TOKEN: '' # See https://gitea.com/gitea/act_runner/issues/119
with:
context: .
file: ./Dockerfile
platforms: |
linux/amd64
linux/arm64
push: true
tags: git.bbee.fr/${{ github.repository }}:latest