We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9939a57 commit 143ede3Copy full SHA for 143ede3
.github/workflows/main.yml
@@ -21,4 +21,24 @@ jobs:
21
- name: Build Handout
22
run: |
23
make handout
24
-
+ - name: Create Release
25
+ if: startsWith(github.event.ref, 'refs/tags')
26
+ id: create_release
27
+ uses: actions/[email protected]
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
35
+ - name: Upload Slides
36
37
+ id: upload-release-asset
38
39
40
41
42
+ upload_url: ${{ steps.create_release.outputs.upload_url }}
43
+ asset_path: GitWorkshop_Slides_*.pdf
44
+ asset_name: Slides
0 commit comments