Skip to content

Commit

Permalink
Create buildzip.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
saiftheboss7 authored Oct 10, 2024
1 parent 8647173 commit d74ab50
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/buildzip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build release zip

on:
push:
branches:
- develop

jobs:
build:
name: Build release zip
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Use Node.js 12.1.0
uses: actions/setup-node@v4
with:
node-version: 12.1.0

- name: Build plugin # Remove or modify this step as needed
run: |
rm -r package-lock.json
npm i
npm run build
npm run makepot
- name: Use desired version of php
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'

- name: Composer install and build # Remove or modify this step as needed
run: |
composer install
composer update
composer dump-autoload -o
composer install --no-dev
composer dump-autoload -o
- name: Generate zip
uses: 10up/action-wordpress-plugin-build-zip@stable
env:
SLUG: wedevs-project-manager # optional, remove if GitHub repo name matches SVN slug, including capitalization

0 comments on commit d74ab50

Please sign in to comment.