From 413cabb7f9f58f846cffbfd86b21daf0335389ce Mon Sep 17 00:00:00 2001 From: Brad Brown Date: Thu, 2 Jun 2022 14:53:28 -0500 Subject: [PATCH] add secrets to env --- .github/workflows/last-pull.yml | 3 +++ .github/workflows/update.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/last-pull.yml b/.github/workflows/last-pull.yml index 6c48926..445fd9e 100644 --- a/.github/workflows/last-pull.yml +++ b/.github/workflows/last-pull.yml @@ -10,6 +10,9 @@ env: TWITTER_USER_TOKEN: ${{ secrets.TWITTER_USER_TOKEN }} TWITTER_USER_TOKEN_SECRET: ${{ secrets.TWITTER_USER_TOKEN_SECRET }} SHEET_API_KEY: ${{ secrets.SHEET_API_KEY }} + DB_HOST: ${{ secrets.DB_HOST }} + DB_PASS: ${{ secrets.DB_PASS }} + DB_PORT: ${{ secrets.DB_PORT }} jobs: pull-updates: runs-on: ubuntu-latest diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 673d774..37fd269 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -11,6 +11,9 @@ env: TWITTER_USER_TOKEN_SECRET: ${{ secrets.TWITTER_USER_TOKEN_SECRET }} SHEET_API_KEY: ${{ secrets.SHEET_API_KEY }} TOKEN_FILE: ${{ secrets.TOKEN_FILE }} + DB_HOST: ${{ secrets.DB_HOST }} + DB_PASS: ${{ secrets.DB_PASS }} + DB_PORT: ${{ secrets.DB_PORT }} jobs: pull-updates: runs-on: ubuntu-latest