-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #4859: Allow release notes to be downloaded (instead of saved t…
…o wiki).
- Loading branch information
Peter Anderson
authored
Jan 6, 2021
1 parent
a817a5e
commit 88d155d
Showing
1 changed file
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Generate release notes (in the wiki) when a milestone is closed. | ||
# Generate release notes when a milestone is closed. | ||
# @see https://github.com/marketplace/actions/release-notes-generator | ||
# @see https://github.com/marketplace/actions/wiki-page-creator-action | ||
# @see https://github.com/marketplace/actions/upload-a-build-artifact | ||
|
||
name: Release Notes Generator | ||
|
||
|
@@ -13,18 +13,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Release notes generator | ||
- name: Generate release notes | ||
uses: docker://decathlon/release-notes-generator-action:3.0.1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
OUTPUT_FOLDER: temp_release_notes | ||
USE_MILESTONE_TITLE: true | ||
- name: Wiki page creator | ||
uses: docker://decathlon/wiki-page-creator-action:2.0.3 | ||
env: | ||
ACTION_MAIL: [email protected] | ||
ACTION_NAME: dragonbot | ||
GH_PAT: ${{ secrets.DRAGONBOT_GH_PAT }} | ||
MD_FOLDER: temp_release_notes | ||
OWNER: backdrop | ||
REPO_NAME: backdrop-issues | ||
- name: Upload release notes | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: release-notes | ||
path: temp_release_notes/ |