Skip to content

Commit

Permalink
chore: add workflow for triggering AUI releases
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Oct 8, 2024
1 parent b405537 commit 52364be
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/aui-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: release-aui

on: push

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

strategy:
matrix:
node-version: [10.15.3]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i && npm i -g gulp@^3.8.5
working-directory: third-party/projects/alloy-ui
- run: gulp init && gulp build
working-directory: third-party/projects/alloy-ui
- run: gulp maven-publish-snapshot
working-directory: third-party/projects/alloy-ui

0 comments on commit 52364be

Please sign in to comment.