-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e708cb
commit 5f437ab
Showing
39 changed files
with
1,680 additions
and
1,666 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Build and Tag | ||
|
||
env: | ||
NODE_VERSION: "20" | ||
NODE_CACHE: "${{ github.workspace }}/node_modules_cache" | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
wordpress: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set PHP version | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
extensions: :php-psr | ||
coverage: none | ||
|
||
- name: composer install | ||
run: composer install | ||
|
||
- name: Set standard 10up cache directories | ||
run: | | ||
sudo npm config set cache "${{ env.NODE_CACHE }}" --global | ||
- name: Prepare npm cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.NODE_CACHE }} | ||
key: npm-${{ env.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
npm-${{ env.NODE_VERSION }}- | ||
- name: "Install node v${{ env.NODE_VERSION }}" | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Build | ||
run: | | ||
npm ci | ||
npm run build | ||
- name: Setup | ||
run: 'echo "VERSION=$(grep -Po ''\"version\": \"[0-9\\.]+\"'' package.json | grep -Po ''[0-9\\.]+'')" >> $GITHUB_ENV' | ||
|
||
- name: Tag | ||
run: | | ||
echo "Releasing version $VERSION ..." | ||
git config user.name github-actions | ||
git config user.email github-actions@github.com | ||
git checkout -b "release-$VERSION" | ||
git add -f dist/* | ||
git commit --no-verify -m "Release $VERSION" | ||
git tag "$VERSION" | ||
git push --tags | ||
env: | ||
TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Build | ||
|
||
env: | ||
NODE_VERSION: "20" | ||
NODE_CACHE: "${{ github.workspace }}/node_modules_cache" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- '[0-9].[0-9x]*' # Version branches: 4.x.x, 4.1.x, 5.x | ||
- code-improvement # todo remove before merging into develop | ||
|
||
jobs: | ||
wordpress: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set PHP version | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
extensions: :php-psr | ||
coverage: none | ||
|
||
- name: composer install | ||
run: composer install | ||
|
||
- name: Set standard 10up cache directories | ||
run: | | ||
sudo npm config set cache "${{ env.NODE_CACHE }}" --global | ||
- name: Prepare npm cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.NODE_CACHE }} | ||
key: npm-${{ env.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
npm-${{ env.NODE_VERSION }}- | ||
- name: "Install node v${{ env.NODE_VERSION }}" | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
|
||
- name: Build | ||
run: | | ||
npm ci | ||
npm run build | ||
- name: Zip | ||
run: npm run build:zip | ||
|
||
- name: Make artifacts available | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Plugin Zip | ||
retention-days: 2 | ||
path: | | ||
${{ github.workspace }}/brightcove-video-connect.zip |
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
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
name: Deploy to WordPress.org | ||
name: Publish New Release | ||
|
||
env: | ||
SLUG: "brightcove-video-connect" | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
tag: | ||
name: New tag | ||
name: New release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: WordPress Plugin Deploy | ||
uses: 10up/action-wordpress-plugin-deploy@master | ||
if: "! github.event.release.prerelease" | ||
id: deploy | ||
uses: 10up/action-wordpress-plugin-deploy@stable | ||
env: | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | ||
SLUG: ${{ env.SLUG }} |
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
Oops, something went wrong.