Skip to content

chore: add workflow for triggering AUI releases #15

chore: add workflow for triggering AUI releases

chore: add workflow for triggering AUI releases #15

Workflow file for this run

name: release-aui
on: push
jobs:
release-aui:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [0.12.18]
steps:
- run: mkdir ${{ home }}/.m2 && touch ${{ home }}/.m2/settings.xml

Check failure on line 14 in .github/workflows/aui-release.yml

View workflow run for this annotation

GitHub Actions / release-aui

Invalid workflow file

The workflow is not valid. .github/workflows/aui-release.yml (Line: 14, Col: 20): Unrecognized named-value: 'home'. Located at position 1 within expression: home .github/workflows/aui-release.yml (Line: 15, Col: 20): Unrecognized named-value: 'home'. Located at position 1 within expression: home
- run: cp settings-example.xml ${{ home }}/.m2/settings.xml
working-directory: third-party/projects/alloy-ui
- 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