Skip to content

Commit

Permalink
Bump env dep
Browse files Browse the repository at this point in the history
  • Loading branch information
almunnings committed Jan 31, 2024
1 parent 6349c2a commit 2a5e4a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,26 @@ on:

env:
TERM: xterm
LANDO_VERSION: 3.20.8

jobs:
lando:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Lando install
run: |
sudo curl -fsSL -o /usr/local/bin/lando "https://github.com/lando/cli/releases/download/v3.20.4/lando-linux-x64-v3.20.4"
sudo curl -fsSL -o /usr/local/bin/lando "https://github.com/lando/cli/releases/download/v${{ env.LANDO_VERSION }}/lando-linux-x64-v${{ env.LANDO_VERSION }}"
sudo chmod +x /usr/local/bin/lando
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.lando/cache
key: lando-3.20.4-${{ github.ref }}
key: lando-${{ env.LANDO_VERSION }}-${{ github.ref }}
restore-keys: |
lando-3.20.4-
lando-${{ env.LANDO_VERSION }}-
- name: Lando start
run: lando start
7 changes: 5 additions & 2 deletions .lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ config:
php: '8.1'
composer_version: '2.6.6'
webroot: web
build:
- appserver: composer install --profile

proxy:
node:
Expand All @@ -20,6 +18,8 @@ services:
environment:
ENVIRONMENT_TYPE: development
DRUSH_OPTIONS_URI: "https://drupal-boilerplate.lndo.site"
build:
- composer install --profile

database:
type: mariadb:custom
Expand Down Expand Up @@ -47,6 +47,9 @@ services:
sslExpose: false
port: 3000
scanner: false
build:
- npm --prefix web/themes/contrib/dvb ci
- npm --prefix web/themes/contrib/dvb run build

tooling:
npm:
Expand Down

0 comments on commit 2a5e4a5

Please sign in to comment.