Skip to content

Commit

Permalink
escape
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Aug 31, 2020
1 parent 014727a commit 80087bb
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/weekly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ jobs:
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: curl -v -H "Authorization: token ${GITHUB_TOKEN}" https://api.github.com/repos/nanasess/ec-cube2/releases --data '
{
"tag_name": "eccube2-weekly-'${REL_DATE}'",
"target_commitish": "master",
"name": "weekly/'${REL_DATE}'",
"body": "EC-CUBE 2.17系の Weekly build🚀 です。毎週の改善内容を反映しております。\n常に安定して動作するよう努めていますが、思わぬ不具合を取り込んでしまっている場合もあります。十分に検証の上ご利用ください。",
"draft": false,
"prerelease": false
}'
run: |
curl -v -H "Authorization: token ${GITHUB_TOKEN}" https://api.github.com/repos/nanasess/ec-cube2/releases \
--data "{ \"tag_name\": \"eccube2-weekly-${REL_DATE}\", \
\"target_commitish\": \"master\", \
\"name"\: \"weekly/${REL_DATE}\", \
\"body\": \"EC-CUBE 2.17系の Weekly build🚀 です。毎週の改善内容を反映しております。\n常に安定して動作するよう努めていますが、思わぬ不具合を取り込んでしまっている場合もあります。十分に検証の上ご利用ください。\", \
\"draft\": false, \
\"prerelease\": false }"
# id: create_release
# uses: actions/create-release@v1
# env:
Expand Down

0 comments on commit 80087bb

Please sign in to comment.