Skip to content

Commit

Permalink
Test release πŸ”Œβš‘πŸŒ
Browse files Browse the repository at this point in the history
  • Loading branch information
angelespejo committed Mar 12, 2023
1 parent 45f2617 commit 45d7a18
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions .github/workflows/release.yml
Expand Up @@ -35,11 +35,25 @@ jobs:
steps:

#########################################################################
# INIT & BUILD PKG
# INIT
#########################################################################
- name: checks-out repository
uses: actions/checkout@v3

# PHP
- name: Install php
uses: "shivammathur/setup-php@v2"
with:
php-version: "latest"

# COMPOSER
- name: Install composer
uses: "ramsey/composer-install@v2"

# PNPM
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install

#########################################################################
# IF IS IN MAIN BRANCH
Expand All @@ -49,18 +63,9 @@ jobs:
# if: endsWith(github.ref, 'main') == false
# run: exit -1


#########################################################################
# BUILD PKG
#########################################################################

- name: Install composer
uses: php-actions/composer@v6
id: composer-install

- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install

- name: Install pkg dependencies
run: |
Expand Down

0 comments on commit 45d7a18

Please sign in to comment.