commit
1959f15d73
17
.gitea/workflows/build.yaml
Normal file
17
.gitea/workflows/build.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: Budilding image
|
||||||
|
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: gitea.haschek.at
|
||||||
|
IMAGE_NAME: $(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
||||||
|
- run: echo "Username ${{ github.actor }}"
|
||||||
|
- run: cat /etc/testy
|
||||||
|
# - run: curl -fsSL https://get.docker.com -o get-docker.sh
|
||||||
|
# - run: sh get-docker.sh
|
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
LABEL maintainer="christian@haschek.at"
|
||||||
|
LABEL version="1"
|
||||||
|
LABEL description="This is a custom Docker Image for the build pipeline"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user