31 lines
614 B
YAML
31 lines
614 B
YAML
name: deploy
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
concurrency: production_environment
|
|
|
|
jobs:
|
|
production:
|
|
runs-on: ubuntu-latest
|
|
environment: Production
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: "8.2"
|
|
|
|
- name: Install dependencies
|
|
run: composer install --no-interaction --no-scripts --prefer-dist --no-dev
|
|
|
|
|
|
- name: Deploy
|
|
uses: deployphp/action@v1
|
|
with:
|
|
private-key: ${{ secrets.DEPLOY_KEY }}
|
|
dep: deploy production --tag=${{ githib.ref }}
|