Skip to content

Commit

Permalink
fix: pop REACT_APP_GITHUB_CLIENT_ID into .env file
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Horton <[email protected]>
  • Loading branch information
madpah committed Jul 11, 2024
1 parent 67d6bf4 commit aad5547
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ permissions:
jobs:
build:
name: Build and Publish Docker Image
env:
REACT_APP_GITHUB_CLIENT_ID: ${{ secrets.REACT_APP_GITHUB_CLIENT_ID }}
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
Expand All @@ -32,6 +30,9 @@ jobs:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Create .env file for Docker Build
run: echo "REACT_APP_GITHUB_CLIENT_ID=${{ secrets.REACT_APP_GITHUB_CLIENT_ID }} > .env"

- name: Build and Publish
uses: docker/build-push-action@v5
with:
Expand Down

0 comments on commit aad5547

Please sign in to comment.