Skip to content

Commit

Permalink
fix: envfile in deploy-happy-stack (#612)
Browse files Browse the repository at this point in the history
* fix: envfile in deploy-happy-stack
  • Loading branch information
ebezzi authored May 17, 2023
1 parent 64b4979 commit 1e2e1b2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy-happy-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,15 @@ jobs:
fi
- name: Setup envfile
run: |
echo "HAPPY_COMMIT=$(git rev-parse --verify HEAD)" >> envfile
mkdir /home/runner/work/custom
touch /home/runner/work/custom/envfile
echo "HAPPY_COMMIT=$(git rev-parse --verify HEAD)" > /home/runner/work/custom/envfile
- name: Update deployment
uses: chanzuckerberg/github-actions/.github/actions/[email protected]
with:
tfe-token: ${{ secrets.TFE_TOKEN }}
stack-name: explorer-${{ env.DEPLOYMENT_STAGE }}stack
create-tag: "true"
env: ${{ env.DEPLOYMENT_STAGE }}
env-file: envfile
happy_version: "0.59.0"
env-file: /home/runner/work/custom/envfile
happy_version: "0.79.1"

0 comments on commit 1e2e1b2

Please sign in to comment.