From 677e0ef2efdd1ac8993f18b6e673fee7f730bd97 Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Sun, 9 Jul 2023 21:54:12 +0200 Subject: [PATCH] Test gitea actions on host --- .gitea/workflows/deploy.yaml | 10 ++++++++++ Makefile | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml create mode 100644 Makefile diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..b996f31 --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,10 @@ +name: Gitea Actions Test - Make +run-name: make +on: [push] +jobs: + Explore-Gitea-Actions: + runs-on: trintignant + steps: + - run: pwd + - run: make + - run: make install diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f6c8226 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +all: hello + +install: /tmp/hello + +/tmp/%: % + install $^ $@