Skip to content

Commit 63abd05

Browse files
committed
update release workflow
1 parent c7122f1 commit 63abd05

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed
File renamed without changes.

.github/workflows/wporg-deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616

1717
- name: Build
1818
run: |
19-
npm install
20-
npm run build
19+
yarn install
20+
composer install --no-dev
21+
yarn build:js
2122
2223
- name: WordPress Plugin Deploy
2324
id: deploy
@@ -27,6 +28,8 @@ jobs:
2728
env:
2829
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
2930
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
31+
SLUG: woocommerce-pos
32+
continue-on-error: true
3033

3134
- name: Upload release asset
3235
uses: actions/upload-release-asset@v1

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: kilbot
33
Tags: cart, e-commerce, ecommerce, inventory, point-of-sale, pos, sales, sell, shop, shopify, store, vend, woocommerce, wordpress-ecommerce
44
Requires at least: 5.6 & WooCommerce 5.3
55
Tested up to: 6
6-
Stable tag: 0.4.5
6+
Stable tag: 0.4.27
77
License: GPL-3.0
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

woocommerce-pos.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
use Dotenv\Dotenv;
2424

2525
// Define plugin constants.
26-
const VERSION = '1.0.0-beta';
26+
const VERSION = '1.0.0-alpha.1';
2727
const PLUGIN_NAME = 'woocommerce-pos';
2828
const SHORT_NAME = 'wcpos';
2929
\define( __NAMESPACE__ . '\PLUGIN_FILE', plugin_basename( __FILE__ ) ); // 'woocommerce-pos/woocommerce-pos.php'

0 commit comments

Comments
 (0)