From 9c4d4fa87c69afa325f705694d071296783d74d3 Mon Sep 17 00:00:00 2001 From: Florian Sylvain Date: Wed, 15 May 2024 13:43:59 +0200 Subject: [PATCH] Update go.yml --- .github/workflows/go.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 967f129..e9bef03 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,7 +13,18 @@ jobs: build: runs-on: ubuntu-latest - environment: test + env: + ENVIRONMENT: ${{ secrets.ENVIRONMENT }} + HOST: ${{ secrets.HOST }} + PORT: ${{ secrets.PORT }} + JWT_SECRET: ${{ secrets.JWT_SECRET }} + CORS_ALLOWED_ORIGINS: ${{ secrets.CORS_ALLOWED_ORIGINS }} + DB_FILE: ${{ secrets.DB_FILE }} + DOCKER_DB_FOLDER: ${{ secrets.DOCKER_DB_FOLDER }} + SMTP_EMAIL: ${{ secrets.SMTP_EMAIL }} + SMTP_PASSWORD: ${{ secrets.SMTP_PASSWORD }} + SMTP_HOST: ${{ secrets.SMTP_HOST }} + SMTP_PORT: ${{ secrets.SMTP_PORT }} steps: - uses: actions/checkout@v3