Skip to content

Commit

Permalink
Release note extraction can only run on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Aug 17, 2020
1 parent bb521fe commit aab578c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ jobs:
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }}
run: ./gradlew build publish

github_release:
runs-on: ubuntu-latest
needs:
- publish

steps:
- uses: actions/checkout@v2

# Can only run on Linux.
- name: Extract release notes
id: release_notes
uses: ffurrer2/extract-release-notes@v1
Expand All @@ -39,6 +48,5 @@ jobs:
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.release_notes.outputs.release_notes }}
files: build/libs/*

This comment has been minimized.

Copy link
@johnjohnmusic713

johnjohnmusic713 Jan 13, 2022

Linux

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit aab578c

Please sign in to comment.