2024-12-22 12:11:24 -05:00
|
|
|
name: Actions
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-12-23 01:32:23 -05:00
|
|
|
- '*'
|
|
|
|
- '!gauntlet/release'
|
2024-12-22 12:11:24 -05:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build Plugins
|
|
|
|
runs-on: docker
|
2024-12-22 12:16:18 -05:00
|
|
|
container: www.coastalcommits.com/cswimr/actions:yarn
|
2024-12-22 12:11:24 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Build plugins
|
2024-12-23 01:36:28 -05:00
|
|
|
run: yarn run build
|
2024-12-23 01:38:59 -05:00
|
|
|
- name: Upload build artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: plugins-build
|
2024-12-23 01:43:48 -05:00
|
|
|
path: dist/
|