-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (36 loc) · 1.22 KB
/
ispw-sync-docker.yml
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
38
39
40
41
42
name: ispw sync using docker
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
sync:
# The type of runner that the job will run on
runs-on: [self-hosted, Linux]
env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
Win_Topaz_Location: 'C:\Topaz\Workbench CLI'
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Synchronize
uses: bmc-compuware/ispw-sync@v2
id: sync-local
with:
host: "cw09.bmc.com"
port: 47623
uid: "pinjxa0"
pass: ${{ secrets.ISPW_USER1_PWD }}
runtimeConfiguration: "TPZP"
stream: "PLAY"
application: "PLAY"
checkoutLevel: "DEV1"
gitUid: "jarora8"
gitToken: ${{ secrets.TOKEN_GITHUB }}
showEnv: true