Skip to content

Commit 8786d0e

Browse files
authored
Add seed of Windows release workflow (#5)
Task/Issue URL: https://app.asana.com/1/137249556945/task/1211671201492810?focus=true ### Description Add seed of Windows release workflow so I can trigger it manually on my branch.
1 parent 3c1c139 commit 8786d0e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release Windows
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
tag:
7+
description: The tag to release
8+
required: true
9+
type: string
10+
11+
workflow_dispatch:
12+
inputs:
13+
tag:
14+
description: The tag to release
15+
required: true
16+
type: string
17+
18+
concurrency:
19+
group: win-build-${{ github.ref }}
20+
cancel-in-progress: true
21+
22+
jobs:
23+
release:
24+
runs-on: windows-2022
25+
timeout-minutes: 20
26+
steps:
27+
- name: Checkout code
28+
uses: actions/checkout@v4

0 commit comments

Comments
 (0)