Skip to content

Commit

Permalink
added envs to github action CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
KnockOutEZ committed Mar 1, 2024
1 parent eda0fe0 commit a2ae92d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
name: 'Setup'
description: "Setups Node.js and yarn to run GitHub Actions' jobs."
env:
BASE_URL: ${{ secrets.BASE_URL }}
USER_NAME: ${{ secrets.USER_NAME }}
USER_PASSWORD: ${{ secrets.USER_PASSWORD }}
DATABASE_NAME: ${{ secrets.DATABASE_NAME }}
runs:
using: 'composite'
steps:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/continuous-integrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,9 @@ jobs:

- name: 'Execute the build script'
run: 'yarn run build'

env:
BASE_URL: ${{ secrets.BASE_URL }}
USER_NAME: ${{ secrets.USER_NAME }}
USER_PASSWORD: ${{ secrets.USER_PASSWORD }}
DATABASE_NAME: ${{ secrets.DATABASE_NAME }}

0 comments on commit a2ae92d

Please sign in to comment.