Skip to content

Commit

Permalink
Create releaseTheKraken
Browse files Browse the repository at this point in the history
  • Loading branch information
fschiozerSFDC authored May 24, 2024
1 parent eb691b6 commit bfbe9ed
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/releaseTheKraken
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Release The Kraken

on:
workflow_dispatch:
inputs:
tag:
description: Tag from where the artifact is going to be downloaded and used as base for the deploy
type: string
required: true
environment:
description: Environment that is going to be used
type: string
required: true

# Jobs to be executed
jobs:
build-deploy:
runs-on: ubuntu-latest
container: tnascimento013/latam_salesforcedx_industries_orgdevmodebuilds:latest
environment: ${{ inputs.environment }}
steps:
- name: Installing missing CLIs / Plugins
run: echo "y" | sf plugins install sf-orgdevmode-builds

- name: Download Artifact
uses: dsaltares/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: tags/${{ inputs.tag }}
file: ${{ github.event.repository.name }}-${{ inputs.tag }}.tar.gz

- name: Unzip artifact
####run: unzip ${{ github.event.repository.name }}-${{ inputs.tag }}.zip -d outputdir/
run: tar -xzf ${{ github.event.repository.name }}-${{ inputs.tag }}.tar.gz -C outputdir/

- name: Extracting private key Non Prod
if: ${{ inputs.environment != 'prod' }}
working-directory: ./outputdir/
run: 'echo "${{ secrets.JWT_KEY_NONPROD }}" > server.key'

- name: Extracting private key Prod
if: ${{ inputs.environment == 'prod' }}
working-directory: ./outputdir/
run: 'echo "${{ secrets.JWT_KEY_PROD }}" > server.key'

- name: Running the build & deploy
working-directory: ./outputdir/
run: sf builds deploy --buildfile manifest/buildfile.json --client-id ${{ vars.CLIENT_ID }} --instance-url ${{ vars.INSTANCE_URL }} --username ${{ vars.USERNAME }} --jwt-key-file server.key

0 comments on commit bfbe9ed

Please sign in to comment.