From 7916eb07cd29bea35da6a04a74d6358bc6a20e12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vivaldo=20Mendon=C3=A7a=20Pinto?= Date: Thu, 7 Apr 2022 10:07:59 -0300 Subject: [PATCH] chore: fixed missing secret to authorize download geolite database on docker build --- .github/workflows/docker-hub.yml | 4 +++- .github/workflows/ghcr.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-hub.yml b/.github/workflows/docker-hub.yml index 82dff47..42ec115 100644 --- a/.github/workflows/docker-hub.yml +++ b/.github/workflows/docker-hub.yml @@ -41,4 +41,6 @@ jobs: context: . push: true tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }} + secrets: | + FEATWS_GEOLITE_TOKEN=${{ secrets.FEATWS_GEOLITE_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index 379a5b1..f7b19e0 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -42,4 +42,6 @@ jobs: context: . push: true tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }} + secrets: | + FEATWS_GEOLITE_TOKEN=${{ secrets.FEATWS_GEOLITE_TOKEN }} \ No newline at end of file