Skip to content

Commit

Permalink
Add workflow to attach pdfs to releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Impelon authored Oct 22, 2020
1 parent 0910e7e commit 3efccdf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release_pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Attach PDF to release

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Upload PDF to release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: writing/paper/paper.pdf
tag: ${{ github.ref }}

0 comments on commit 3efccdf

Please sign in to comment.