From 9b0c41c34b5447a47fa693b4016362777e75eb21 Mon Sep 17 00:00:00 2001 From: Haelnorr Date: Sun, 16 Feb 2025 22:27:13 +1100 Subject: [PATCH] Fixed deployment scripts --- .github/workflows/deploy_staging.yaml | 3 +++ Makefile | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/deploy_staging.yaml b/.github/workflows/deploy_staging.yaml index 21f7705..c5af658 100644 --- a/.github/workflows/deploy_staging.yaml +++ b/.github/workflows/deploy_staging.yaml @@ -27,6 +27,9 @@ jobs: chmod +x tailwindcss sudo mv tailwindcss /usr/local/bin/ + - name: Run init + run: make init + - name: Run tests run: make test diff --git a/Makefile b/Makefile index 7c92eaf..99a6fd7 100644 --- a/Makefile +++ b/Makefile @@ -26,3 +26,9 @@ test: clean: go clean + + +init: + go mod init projectreshoot + go mod tidy + go generate