From 05ec5f94aba4c6a8d04a83c3700423cd5fbd6e5e Mon Sep 17 00:00:00 2001 From: Marco Cawthorne Date: Mon, 10 Feb 2025 21:09:21 -0800 Subject: [PATCH] fix AUTH_HOST not being passed to the build env --- .forgejo/workflows/construct.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/construct.yaml b/.forgejo/workflows/construct.yaml index a35d7f3..790ad1d 100644 --- a/.forgejo/workflows/construct.yaml +++ b/.forgejo/workflows/construct.yaml @@ -27,10 +27,11 @@ jobs: env: PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }} - CERTHOST: ${{ secrets.CERTHOST }} - name: construct pkglists run: make && rm private-key.pem public-key.pem + env: + AUTH_HOST: ${{ secrets.AUTH_HOST }} - uses: actions/upload-artifact@v3 with: