Some checks failed
Build and Push Docker Images / build-rust-latest (push) Failing after 57s
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
|
|
name: Build and Push Docker Images
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, ci ]
|
|
paths:
|
|
- '*/Dockerfile'
|
|
- '.gitea/workflows/docker-build.yml'
|
|
|
|
jobs:
|
|
build-rust-latest:
|
|
runs-on: ubuntu-latest
|
|
container: git.hofer.link/philipp/ci-images:rust-latest
|
|
#if: github.event_name == 'push' && contains(github.event.commits[0].modified, 'rust-latest/Dockerfile')
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Install Docker
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y docker.io
|
|
systemctl start docker
|
|
|
|
|
|
- name: Login to Gitea Container Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: git.hofer.link
|
|
username: ${{ secrets.USERNAME_GITEA }}
|
|
password: ${{ secrets.PASSWORD_GITEA }}
|
|
|
|
- name: Build and push rust-latest
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: ./rust-latest
|
|
push: true
|
|
tags: git.hofer.link/philipp/ci-images:rust-latest
|