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 $^ $@