We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5778bf9 commit dda11eeCopy full SHA for dda11ee
.github/workflows/test-ws-scan.yml
@@ -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