Fix workflow & add makefile
Build and Push Docker Image / build-and-push (push) Failing after 49s

This commit is contained in:
Zachary Guénot
2025-05-30 11:06:00 +02:00
parent 1e3f62d3c4
commit 19119e5c77
2 changed files with 27 additions and 0 deletions
+5
View File
@@ -26,6 +26,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
+22
View File
@@ -0,0 +1,22 @@
# =====================
# Build new application
# =====================
.PHONY: tag-build
tag-build: ## DEV : Build a prod version with a timestamped tag
@export TIMESTAMP=build_`date +"%G-%m-%d_%Hh%M"`; \
echo TAG = $$TIMESTAMP; \
git tag $$TIMESTAMP; \
git push origin $$TIMESTAMP;
# ===============
# Deployment tags
# ===============
.PHONY: tag-deploy
tag-deploy: ## DEV : Set tag to current HEAD to deploy in production
@export TIMESTAMP=deploy_`date +"%G-%m-%d_%Hh%M"`; \
echo TAG = $$TIMESTAMP; \
git tag $$TIMESTAMP; \
git push origin $$TIMESTAMP;