Skip to content

0.0.2

0.0.2 #2

Workflow file for this run

name: Deploy project
on:
release:
types: [published]
jobs:
deploy-release:
runs-on: ubuntu-latest
container:
image: salesforce/cli:latest-slim
steps:
- name: 'Checkout source code'
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Authenticate using SFDX_AUTH_URL'
shell: bash
run: |
echo ${{ secrets.SFDX_AUTH_URL }} | sf org login sfdx-url -s -u
- name: 'Deploy'
run: |
sf project deploy start -d force-app/ -l RunLocalTests -w 30