Merge pull request #351 from navikt/TOLK-2499 #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[PUSH] Create Package" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- "force-app/**" | |
jobs: | |
create-package: | |
name: Run Package Creation | |
uses: navikt/crm-workflows-base/.github/workflows/packageCreate.yml@master | |
permissions: | |
contents: write | |
secrets: inherit | |
install-in-uat: | |
name: Install in UAT | |
needs: [create-package] | |
uses: navikt/crm-workflows-base/.github/workflows/deployPackage.yml@master | |
permissions: | |
contents: read | |
with: | |
packageId: ${{ needs.create-package.outputs.packageId }} | |
org: uat | |
unpackagable: ./force-app/unpackagable-with-auto-deploy | |
secrets: inherit |