Skip to content

WSS-14 Added source-directory input to install-package-* workflows fo… #8

WSS-14 Added source-directory input to install-package-* workflows fo…

WSS-14 Added source-directory input to install-package-* workflows fo… #8

Workflow file for this run

name: Create package version
on:
push:
branches:
- main
workflow_dispatch:
inputs:
promote:
description: "Promote package version to released"
type: boolean
default: false
required: true
jobs:
package:
uses: wtaxco/wtax-github-actions-workflows/.github/workflows/create-sfdx-package.yml@main
with:
source-directory: sfdx-source/apex-common
promote: ${{ inputs.promote != null && inputs.promote }}
secrets:
ansible-vault-password: ${{ secrets.VAULT_PASSWORD }}