Skip to content

Commit 8a447bc

Browse files
author
Vladimir Kotal
committed
actually create release
1 parent 1847957 commit 8a447bc

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/pdfs.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Create release with PDFs
22
on:
33
push:
4-
branches:
5-
- master
64
tags:
75
- 'v*'
86
jobs:
@@ -24,3 +22,13 @@ jobs:
2422
- name: Compile second phase to get table of contents
2523
working-directory: master
2624
run: make slides notes
25+
- name: Create Release
26+
id: create_release
27+
uses: actions/create-release@v1
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
with:
31+
tag_name: ${{ github.ref }}
32+
release_name: Release ${{ github.ref }}
33+
draft: false
34+
prerelease: false

0 commit comments

Comments
 (0)