Skip to content

Commit dda11ee

Browse files
committed
add test workflow
1 parent 5778bf9 commit dda11ee

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test-ws-scan.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test ws_scan.sh
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
version:
6+
description: 'Version to use'
7+
required: true
8+
9+
jobs:
10+
test-ws-scan:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Set up environment and run ws_scan.sh
18+
run: |
19+
VERSION="${{ github.event.inputs.version }}"
20+
echo "VERSION=$VERSION"
21+
WS_PROJECTNAME="${GITHUB_REPOSITORY} ${VERSION}"
22+
echo "WS_PROJECTNAME=$WS_PROJECTNAME"
23+
BUILD_NUMBER=${VERSION}
24+
echo "BUILD_NUMBER=$BUILD_NUMBER"
25+
source ws_scan.sh

0 commit comments

Comments
 (0)