chore(deps): update dependency laravel-vite-plugin to v1 #139
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
--- | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- develop | |
name: 🚀 Deploy to staging | |
jobs: | |
deployment: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: ["ubuntu-22.04"] | |
php: ["8.1"] | |
environment: | |
name: staging | |
url: https://staging.laravel-cycle-starter-tpl.wayof.dev | |
steps: | |
- name: 📦 Check out the codebase | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 🛠️ Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, fileinfo | |
ini-values: error_reporting=E_ALL | |
tools: composer:v2 | |
- name: ♻️ Restore cached backend dependencies | |
id: cached-composer-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: vendor-${{ runner.os }}-${{ hashFiles('**/composer.lock') }}-${{ matrix.php }} | |
- name: 📥 Install backend dependencies | |
if: steps.cached-composer-dependencies.outputs.cache-hit != 'true' | |
run: cd app && composer install | |
- name: 📤 Deploy staging environment | |
uses: deployphp/action@v1 | |
with: | |
private-key: ${{ secrets.DEPLOYER_PRIVATE_KEY }} | |
dep: deploy staging | |
deployer-version: 7.3.1 | |
sub-directory: app | |
env: | |
DEPLOYER_STAGING_SLACK_WEBHOOK: ${{ secrets.DEPLOYER_STAGING_SLACK_WEBHOOK }} | |
DEPLOYER_STAGING_REMOTE_USER: ${{ secrets.DEPLOYER_STAGING_REMOTE_USER }} | |
DEPLOYER_STAGING_HOST: "staging.laravel-cycle-starter-tpl.wayof.dev" | |
DEPLOYER_STAGING_BRANCH: "develop" | |
DEPLOYER_PROD_SLACK_WEBHOOK: ${{ secrets.DEPLOYER_PROD_SLACK_WEBHOOK }} | |
DEPLOYER_PROD_REMOTE_USER: ${{ secrets.DEPLOYER_PROD_REMOTE_USER }} | |
DEPLOYER_PROD_HOST: "prod.laravel-cycle-starter-tpl.wayof.dev" | |
DEPLOYER_PROD_BRANCH: "master" | |
... |