Skip to content

Commit

Permalink
Create Jalaj-Sync-Local
Browse files Browse the repository at this point in the history
  • Loading branch information
jarora8 authored Sep 13, 2024
1 parent 47b3041 commit 7251298
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/Jalaj-Sync-Local
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This is a basic workflow to help you get started with Actions

name: Jalaj sync local
on: workflow_dispatch

# Controls when the workflow will run
#on:
# Triggers the workflow on push or pull request events but only for the main branch
#push:
#branches: [ arrakis-operations ]


# 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]

env:
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
Win_Topaz_Location: 'C:\Jalaj\23.4CLI'

# 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-local@main
id: sync-local
with:
host: 'cw09.bmc.com'
port: 47624
uid: 'pinjxa0'
pass: ${{ secrets.ISPW_USER1_PWD }}
runtimeConfiguration: 'TPTP'
stream: 'PLAY'
application: 'PLAY'
checkoutLevel: 'PLAY'
gitUid: 'jarora8'
gitToken: ${{ secrets.TOKEN_GITHUB }}
winTopazPath: ${{ env.Win_Topaz_Location }}
showEnv: true

0 comments on commit 7251298

Please sign in to comment.