Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arnoldsandoval-okta committed Nov 17, 2020
1 parent 374734f commit ad5009e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: set $SHA7
run: echo "{SHA7}=$(git rev-parse --short ${{ github.event.pull_request.head.sha || github.sha }})" >> $GITHUB_ENV
run: echo "SHA7=$(git rev-parse --short ${{ github.event.pull_request.head.sha || github.sha }})" >> $GITHUB_ENV
- name: set $PREVIEW_URL
run: echo "{PREVIEW_URL}="https://${SHA7}.ods.dev"" >> $GITHUB_ENV
run: echo "PREVIEW_URL="https://${SHA7}.ods.dev"" >> $GITHUB_ENV

- name: get COMMIT_MSG
run: echo "{COMMIT_MSG}=$(git log --format=%B -n 1 ${{ github.event.after }})" >> $GITHUB_ENV
run: echo "COMMIT_MSG=$(git log --format=%B -n 1 ${{ github.event.after }})" >> $GITHUB_ENV

- name: install dependencies
run: yarn
Expand Down

0 comments on commit ad5009e

Please sign in to comment.