Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The release draft references the correct SHA #18

Merged
merged 1 commit into from
Jul 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
runs-on: ubuntu-latest
name: create release draft
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: 'Get Previous tag'
id: previoustag
Expand Down Expand Up @@ -49,25 +51,37 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'update inspec.yml and changelog'
force-add: 'true'
files: inspec.yml CHANGELOG.md
name: dev-sec CI
email: hello@dev-sec.io
rebase: 'true'

- name: Read CHANGELOG.md
id: package
uses: juliangruber/read-file-action@v1
with:
path: ./CHANGELOGRELEASE.md

- uses: actions/checkout@v2
with:
ref: master

- name: Get current commitish
id: current_commitish
run: echo "::set-output name=sha::$(git log -1 --format="%H")"

- name: Check it
run: echo ${{ steps.current_commitish.outputs.sha }}

- name: Create Release draft
id: create_release
uses: actions/create-release@v1
uses: actions/create-release@v1.1.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
release_name: ${{ steps.version.outputs.next-version }}
tag_name: ${{ steps.version.outputs.next-version }}
body: |
${{ steps.package.outputs.content }}
commitish: ${{ steps.current_commitish.outputs.sha }}
draft: true