aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/create-release.yml
blob: 014c0e501fff158e6ea11fa7747c86763a5e1f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This work flow includes source and PDF in Release.  It relies on the build-pdf workflow to create the PDF.
#
# NOTE: At this time it only runs manually.

name: Create Document Release

on:
  workflow_dispatch:
    inputs:
      version:
        description: 'Release version, e.g. X.Y.Z:'
        required: true
        type: string
      prerelease:
        description: 'Tag as a pre-release?'
        required: false
        type: boolean
        default: true
      draft:
        description: 'Create release as a draft?'
        required: false
        type: boolean
        default: false

jobs:
  build:
    uses: ./.github/workflows/build-pdf.yml
  release:
    runs-on: ubuntu-latest
    needs: build
    steps:
    - name: Download Artifacts
      uses: actions/download-artifact@v3
      with:
        name: ${{ needs.build.outputs.pdf-name }}
    - name: Create Release
      uses: softprops/action-gh-release@v1
      with:
        files: ${{ needs.build.outputs.pdf-name }}
        tag_name: v${{ github.event.inputs.version }}
        name: Release ${{ github.event.inputs.version }}
        draft: ${{ github.event.inputs.draft }}
        prerelease: ${{ github.event.inputs.prerelease }}