actions versions updated; makefile naming, versions and default goal updated

This commit is contained in:
pseusys
2023-01-13 05:24:11 +04:00
parent 2a4fc11f8e
commit 7f5f146751
2 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
.DEFAULT_GOAL = run
.DEFAULT_GOAL = help
SHELL = /bin/bash
PATH := venv/bin:node_modules/.bin:$(PATH)
@@ -7,7 +7,7 @@ PATH := venv/bin:node_modules/.bin:$(PATH)
help:
@echo "Welcome to `waka-readme-stats` github action!"
@echo "The action can be tested locally with: `make run`"
@echo "NB! For local testing Python version between ??? and ??? and NodeJS version between ??? and ??? are required"
@echo "NB! For local testing Python version 3.6+ and NodeJS version between ??? and ??? are required"
@echo "The action image can be built locally with: `make container`"
@echo "NB! For local container building Docker version between ??? and ??? is required"
@echo "The action directory and image can be cleaned with: `make clean`"
@@ -31,9 +31,9 @@ run: dependencies
.PHONY: run
container:
image:
docker build -t waka-readme-stats -f Dockerfile .
.PHONY: container
.PHONY: image
clean: