Skip to content

Commit 407412f

Browse files
authored
Update changelog.yml
1 parent 4a1996e commit 407412f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/changelog.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,24 @@ jobs:
5858

5959
- name: View Changelog
6060
run: cat .github/CHANGELOG.md
61+
62+
- name: Add Artifact
63+
uses: actions/upload-artifact@v2
64+
with:
65+
name: out
66+
path: .gradle/CHANGELOG.md
6167

6268
view:
6369
name: View Changelog Output
6470
runs-on: ubuntu-latest
6571
needs: [generate]
6672
steps:
67-
- run: cat .github/CHANGELOG.md
73+
- name: Download Build Results
74+
uses: actions/download-artifact@v2
75+
with:
76+
name: out
77+
path: out
78+
79+
- run: cat out/CHANGELOG.md
6880

6981
# {needs.generate.outputs.changelog}}

0 commit comments

Comments
 (0)