Skip to content

Automated /cartridges folder commit #10

Automated /cartridges folder commit

Automated /cartridges folder commit #10

name: Release Workflow
on:
pull_request:
paths-ignore:
- 'int_adyen_controllers/**'
- 'adyen_controllers_changes/**'
jobs:
commit-the-cartridge:
if: ${{ github.actor != 'renovate[bot]' || github.actor != 'lgtm-com[bot]' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- sfra-version: 'v6.1.0'
sfcc-hostname-secret: 'SFCC_HOSTNAME_SFRA6'
code-version-secret: 'SFCC_CODE_VERSION_SFRA6'
steps:
- name: Checkout SFRA code
uses: actions/checkout@v3
with:
repository: SalesforceCommerceCloud/storefront-reference-architecture
ref: ${{ matrix.sfra-version }}
ssh-key: ${{ secrets.SERVICE_ACCOUNT_SSH_KEY }}
path: storefront-reference-architecture
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Checkout
uses: actions/checkout@v3
with:
path: adyen-salesforce-commerce-cloud
- name: Install SFRA dependencies
working-directory: storefront-reference-architecture
run: npm install
- name: Install Adyen SFCC dependencies
working-directory: adyen-salesforce-commerce-cloud
run: npm install
- name: Build the code
working-directory: adyen-salesforce-commerce-cloud
run: |
npm run transpile && npm run compile:js | tee build_output.txt
mkdir -p $GITHUB_WORKSPACE/cartridge
cp -R cartridge/* $GITHUB_WORKSPACE/cartridge
shell: bash
- name: Commit changes
if: success()
run: |
cd adyen-salesforce-commerce-cloud
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add $GITHUB_WORKSPACE/cartridge/*
git commit -m "chore: committing the built /cartridge folder"
git fetch origin
git push origin HEAD:${{ github.head_ref }} --force-with-lease