Skip to content

Commit

Permalink
Fix Action - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dhavalshreyas committed Apr 16, 2020
1 parent 450d04d commit 33faca5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,8 @@ jobs:
echo "::set-env name=DRY_RUN::true"
- name: Debug info
with:
path: release
run: |
cd release
echo event_name=${{ github.event_name }}
echo GITHUB_REF=$GITHUB_REF
echo GITHUB_HEAD_REF=$GITHUB_HEAD_REF
Expand All @@ -149,13 +148,13 @@ jobs:
## Main steps
- name: Build and deploy website
with:
path: release
env:
WORKFLOW_GOOGLE_ANALYTICS_KEY: ${{ secrets.WORKFLOW_GOOGLE_ANALYTICS_KEY }}
GIT_USERNAME: ${{ github.actor }}
GIT_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: ./deploy_website.sh ${{ env.PREFIX_FOR_TEST }}v${{ env.WORKFLOW_VERSION }}
run: |
cd release
./deploy_website.sh ${{ env.PREFIX_FOR_TEST }}v${{ env.WORKFLOW_VERSION }}
- name: Create Github Release
Expand Down

0 comments on commit 33faca5

Please sign in to comment.