-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1128 from Adyen/release/24.3.0
Release/24.3.0
- Loading branch information
Showing
146 changed files
with
23,070 additions
and
24,123 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Actions" | ||
git add cartridges/**/* | ||
git commit -m "chore: committing the built /cartridge folder" | ||
git commit --no-verify -m "chore: committing the built /cartridge folder" | ||
git fetch origin | ||
git push origin HEAD:${{ github.head_ref }} --force-with-lease | ||
- name: Commit .project files | ||
|
@@ -91,6 +91,6 @@ jobs: | |
git add . | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Actions" | ||
git commit -m "chore: committing the project files" | ||
git commit --no-verify -m "chore: committing the project files" | ||
git fetch origin | ||
git push origin HEAD:${{ github.head_ref }} --force-with-lease |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Metadata upload | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'metadata/**' | ||
jobs: | ||
upload-metadata: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- sfra-version: 'v5.3.0' | ||
node-version: '16' | ||
sfcc-hostname-secret: 'SFCC_STOREFRONT_URL_SFRA5' | ||
code-version-secret: 'SFCC_CODE_VERSION_SFRA5' | ||
- sfra-version: 'v6.1.0' | ||
node-version: '16' | ||
sfcc-hostname-secret: 'SFCC_STOREFRONT_URL_SFRA6' | ||
code-version-secret: 'SFCC_CODE_VERSION_SFRA6' | ||
- sfra-version: 'v7.0.0' | ||
node-version: '18' | ||
sfcc-hostname-secret: 'SFCC_STOREFRONT_URL_SFRA7' | ||
code-version-secret: 'SFCC_CODE_VERSION_SFRA7' | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
path: adyen-salesforce-commerce-cloud | ||
- name: Install Salesforce CLI | ||
run: | | ||
npm install -g sfcc-ci | ||
- name: Zip site_import | ||
working-directory: adyen-salesforce-commerce-cloud/metadata | ||
run: | | ||
zip -r $GITHUB_WORKSPACE/site_import.zip site_import | ||
- name: Upload the metadata to the sandbox | ||
working-directory: adyen-salesforce-commerce-cloud/metadata | ||
run: | | ||
sfcc-ci client:auth '${{ secrets.SFCC_CLIENT_ID }}' '${{ secrets.SFCC_CLIENT_SECRET }}' | ||
sfcc-ci instance:upload $GITHUB_WORKSPACE/site_import.zip -i "${{ secrets[matrix.sfcc-hostname-secret] }}" | ||
- name: Import the metadata to the sandbox | ||
working-directory: adyen-salesforce-commerce-cloud/metadata | ||
run: | | ||
sfcc-ci instance:import site_import.zip -i "${{ secrets[matrix.sfcc-hostname-secret] }}" -s |
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
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
3 changes: 2 additions & 1 deletion
3
cartridges/app_adyen_SFRA/cartridge/client/default/js/amazonPayExpressPart1.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.