Skip to content

Commit

Permalink
Fix Main GitHub Action variable handling
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlod committed Mar 29, 2024
1 parent 46bc7f5 commit e0d1a91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Test and Build

env:
IMAGE_NAME: andrewlod767/authentication-api
PROD_ENDPOINT: ""
SV_PORT: "80"
IMAGE_NAME: ${{ vars.IMAGE_NAME || 'andrewlod767/authentication-api' }}
PROD_ENDPOINT: ${{ vars.PROD_ENDPOINT || '' }}
SV_PORT: ${{ vars.SV_PORT || '80' }}

on:
push:
Expand Down

0 comments on commit e0d1a91

Please sign in to comment.