afv-library/skills/deploying-omnistudio-datapacks/references/job-file-template.md
sandipkumar-yadav 37aa84df42
feat: @W-22444026@ Introducing Core Skills, Datacloud Skills, Industries and Utility Skills. (#268)
* Migrating Core Salesforce Skills

* Updating pr comments

* updat reference

* Updating a skill

* Migrating Datacloud skills

* Migrating Industries cloud skills

* Validating - skills fixing

---------

Co-authored-by: Sandip Kumar Yadav <sandipkumar.yadav+sfemu@salesforce.com>
2026-05-14 19:32:15 +05:30

43 lines
838 B
Markdown

# Vlocity Build Job File Template
Use this as a baseline and keep only settings you need to override.
```yaml
projectPath: .
expansionPath: vlocity
# Optional: narrow export scope
queries:
- OmniScript
- IntegrationProcedure
- DataRaptor
- FlexCard
# Optional: deterministic targeted scope
# manifest:
# - Product2/<global-key>
# - OmniScript/<type>_<subtype>_<language>
# Optional runtime controls
autoUpdateSettings: true
defaultMaxParallel: 1
supportHeadersOnly: true
gitCheck: false
```
## Common command patterns
```bash
# Export
vlocity -sfdx.username <source> -job <job>.yaml packExport
# Deploy
vlocity -sfdx.username <target> -job <job>.yaml packDeploy
# Retry
vlocity -sfdx.username <target> -job <job>.yaml packRetry
# Continue interrupted
vlocity -sfdx.username <target> -job <job>.yaml packContinue
```