Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(alloy-ui): bump yui to patched-v3.20.5 #1231

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/aui-release-official.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Official AUI release to Maven

on: workflow_dispatch

jobs:
aui-release:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [0.12.18]

steps:
- name: maven-settings-xml-action
uses: s4u/maven-settings-action@v2.3.0
with:
servers: |
[{
"id": "liferay-public-releases",
"username": "${{ secrets.MAVEN_USERNAME }}",
"password": "${{ secrets.MAVEN_PASSWORD }}"
}]
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
- run: npm i
working-directory: third-party/projects/alloy-ui
- run: npm i -g gulp@^3.8.5
- run: gulp init && gulp build
working-directory: third-party/projects/alloy-ui
- run: gulp maven-publish-release
working-directory: third-party/projects/alloy-ui
35 changes: 35 additions & 0 deletions .github/workflows/aui-release-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Snapshot releast of AUI to maven

on: workflow_dispatch

jobs:
aui-snapshot:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [0.12.18]

steps:
- name: maven-settings-xml-action
uses: s4u/maven-settings-action@v2.3.0
with:
servers: |
[{
"id": "liferay-public-snapshots",
"username": "${{ secrets.MAVEN_USERNAME }}",
"password": "${{ secrets.MAVEN_PASSWORD }}"
}]
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
- run: npm i
working-directory: third-party/projects/alloy-ui
- run: npm i -g gulp@^3.8.5
- run: gulp init && gulp build
working-directory: third-party/projects/alloy-ui
- run: gulp maven-publish-snapshot
working-directory: third-party/projects/alloy-ui
4 changes: 2 additions & 2 deletions third-party/projects/alloy-ui/.alloy.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"alloycore": ["aui-base-core"],
"alloyregex": "(aui|yui(",
"yuiversion": "patched-v3.20.4",
"version": "3.1.0-deprecated.123"
"yuiversion": "patched-v3.20.5",
"version": "3.1.0-deprecated.124"
}
4 changes: 2 additions & 2 deletions third-party/projects/alloy-ui/bower.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "alloy-ui",
"version": "3.1.0-deprecated.123",
"version": "3.1.0-deprecated.124",
"homepage": "http://alloyui.com",
"authors": ["Eduardo Lundgren <eduardo.lundgren@liferay.com>"],
"description": "AlloyUI is a framework built on top of YUI3 (JavaScript) that uses Bootstrap (HTML/CSS) to provide a simple API for building high scalable applications",
"keywords": ["alloy", "alloyui", "aui", "yui", "yui3"],
"license": "BSD",
"dependencies": {
"yui3": "liferay/yui3#patched-v3.20.4"
"yui3": "liferay/yui3#patched-v3.20.5"
},
"devDependencies": {
"ace-builds": "1.4.6",
Expand Down
2 changes: 1 addition & 1 deletion third-party/projects/alloy-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alloy-ui",
"description": "AlloyUI",
"version": "3.1.0-deprecated.123",
"version": "3.1.0-deprecated.124",
"author": {
"name": "Eduardo Lundgren",
"email": "eduardo.lundgren@liferay.com",
Expand Down
15 changes: 15 additions & 0 deletions third-party/projects/alloy-ui/settings-example.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>liferay-public-snapshots</id>
<username>YOUR_SSO_USERNAME</username>
<password>YOUR_SSO_PASSWORD</password>
</server>
<server>
<id>liferay-public-releases</id>
<username>YOUR_SSO_USERNAME</username>
<password>YOUR_SSO_PASSWORD</password>
</server>
</servers>
</settings>
Loading