Skip to content

Commit

Permalink
https://github.com/actions/create-release/issues/64#issuecomment-6386…
Browse files Browse the repository at this point in the history
…95206
  • Loading branch information
syoh committed Oct 18, 2020
1 parent 565780d commit ba6d705
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Set body
id: set_body
run: |
echo "::set-output name=grader_image::dddlab/data_science_project_template:sha-${GITHUB_SHA::7}"
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -46,7 +51,7 @@ jobs:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
"dddlab/data_science_project_template:sha-${GITHUB_SHA}"
${{ steps.set_body.outputs.grader_image }}
draft: false
prerelease: false

0 comments on commit ba6d705

Please sign in to comment.