changement dans les gitea actions
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 28s

This commit is contained in:
2024-07-16 01:08:46 +02:00
parent fbd7c9e10a
commit f28d04ddde
2 changed files with 28 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
on:
push:
branches:
- master
jobs:
Explore-Gitea-Actions:

View File

@@ -0,0 +1,24 @@
name: Build and Push Docker Image
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Registry
uses: docker/login-action
with:
registry: registry.prod.resk-u.ch
- name: Build and Push Docker image
uses: docker/build-push-action
with:
context: .
push: true
tags: registry.prod.resk-u.ch/reskreen:latest