-
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 797 Bytes
/
release.yml
File metadata and controls
37 lines (34 loc) · 797 Bytes
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
name: Release Quarto Extension
on:
workflow_dispatch:
inputs:
version:
type: choice
description: "Version"
required: false
default: "minor"
options:
- "patch"
- "minor"
- "major"
quarto:
type: choice
description: "Quarto version"
required: false
default: "release"
options:
- "release"
- "pre-release"
permissions:
contents: write
pull-requests: write
id-token: write
pages: write
jobs:
release:
uses: mcanouil/quarto-workflows/.github/workflows/release.yml@main
secrets: inherit
with:
gh-app-id: ${{ vars.APP_ID }}
version: "${{ github.event.inputs.version }}"
quarto: "${{ github.event.inputs.quarto }}"