Skip to content

Commit 1103233

Browse files
Adding basic workflow for MSO-Scripts
1 parent 00f0914 commit 1103233

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: test-release-action
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
version:
6+
description: 'Release version'
7+
required: true
8+
type: string
9+
jobs:
10+
create-release:
11+
runs-on: windows-latest
12+
steps:
13+
- name: Check out repository
14+
uses: actions/checkout@v4
15+
16+
      - name: Create artifacts directory
17+
        run: mkdir bin
18+
19+
      - name: Copy scripts
20+
        run: xcopy /s src bin
21+
22+
- name: Publish release
23+
run: gh release create v${{ inputs.version }} --title "Release v${{ inputs.version }}" bin

0 commit comments

Comments
 (0)