Fixes
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 29s

This commit is contained in:
Thomas 2025-02-25 21:31:58 +01:00
parent 748f9a289b
commit 32316126b3
3 changed files with 4 additions and 3 deletions

View File

@ -37,4 +37,4 @@ COMPOSER_VERSION=2.2.5
MYSQL_VERSION=10.4.8 MYSQL_VERSION=10.4.8
MONGODB_VERSION=5 MONGODB_VERSION=5
NGINX_VERSION=1.21.5-alpine NGINX_VERSION=1.21.5-alpine
PHP_VERSION=7.4 PHP_VERSION=8.2

View File

@ -13,7 +13,8 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository - name: Make Setup
run: | run: |
ls ${{ gitea.workspace }} ls ${{ gitea.workspace }}
make make-init
- run: echo "🍏 This job's status is ${{ job.status }}." - run: echo "🍏 This job's status is ${{ job.status }}."

View File

@ -81,7 +81,7 @@ help:
##@ [Make] ##@ [Make]
ENVS?=ENV=local TAG=latest ENVS?=ENV=local TAG=2.2
.PHONY: make-init .PHONY: make-init
make-init: ## Initializes the local .makefile/.env file with ENV variables for make. Use via ENVS="KEY_1=value1 KEY_2=value2" make-init: ## Initializes the local .makefile/.env file with ENV variables for make. Use via ENVS="KEY_1=value1 KEY_2=value2"
@$(if $(ENVS),,$(error ENVS is undefined)) @$(if $(ENVS),,$(error ENVS is undefined))