Skip to content

Commit

Permalink
Test another way of dealing with secrets 2
Browse files Browse the repository at this point in the history
  • Loading branch information
m1k3lm committed Dec 29, 2023
1 parent b7035e7 commit a8fe106
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,26 @@ jobs:
php-version: "8.2"
- name: 'Configure our repo'
working-directory: magento
env:
COMPOSER_AUTH: |
{
"http-basic": {
"repo.magento.com": {
"username": "5310458a34d580de1700dfe826ff19a1",
"password": "${{ secrets.REPO_MAGENTO_PASS }}"
}
},
"github-oauth": {
"github.com": "${{ github.token }}"
}
}
run: |
vendor/bin/composer config repositories.sequra/magento2-core vcs git@github.com:sequra/magento2-core.git
vendor/bin/composer require sequra/magento2-core:"dev-${{ steps.extract_branch.outputs.branch }}"
- name: 'debug'
run: ls -l magento/vendor/sequra

- name: 'debug'
run: cat magento/composer.json

Expand Down

0 comments on commit a8fe106

Please sign in to comment.