Skip to content

Commit

Permalink
Merge pull request #428 from nanasess/fix-weekly
Browse files Browse the repository at this point in the history
Weekly ビルドがデプロイできなくなっていたのを修正
  • Loading branch information
okazy authored Nov 11, 2020
2 parents 593a1f7 + 0aee62a commit 63256e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
steps:
- name: TAG_NAME for schedule
if: github.event_name == 'schedule'
run: echo "::set-env name=TAG_NAME::eccube2-weekly-$(date +%Y%m%d)"
run: echo "TAG_NAME=eccube2-weekly-$(date +%Y%m%d)" >> $GITHUB_ENV
- name: TAG_NAME for release
if: github.event_name == 'release'
env:
TAG_NAME: ${{ github.event.release.tag_name }}
run: echo "::set-env name=TAG_NAME::${TAG_NAME}"
run: echo "TAG_NAME=${TAG_NAME}" >> $GITHUB_ENV
- name: Create Release
if: github.event_name == 'schedule'
id: create_release
Expand Down

0 comments on commit 63256e2

Please sign in to comment.