Updated dependencies #364
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: Deploy Main Branch Artifact | |
on: | |
push: | |
branches: | |
- '2.x' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
name: Deploy Main Artifact | |
runs-on: ubuntu-latest | |
container: | |
image: pookmish/drupal8ci:php8.3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
vendor | |
docroot/core | |
docroot/libraries | |
docroot/modules/contrib | |
key: 2.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} | |
restore-keys: | | |
2.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} | |
2.x-${{ hashFiles('blt/blt.yml') }}-${{ hashFiles('composer.json') }}- | |
2.x-${{ hashFiles('blt/blt.yml') }}- | |
- name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.SSH_KEY }} | |
name: id_rsa | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
if_key_exists: fail | |
- name: Deploy Artifact | |
run: | | |
git config --system --add safe.directory '*' && | |
git config --global user.email "sws-developers@lists.stanford.edu" && | |
git config --global user.name "Github Actions" && | |
ssh-keyscan -t rsa svn-45197.prod.hosting.acquia.com >> /root/.ssh/known_hosts && | |
composer install -n && | |
git checkout composer.lock && | |
blt deploy -v -n |