Renovate
55579f292a
All checks were successful
Actions / Build Plugins (push) Successful in 42s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | www.coastalcommits.com/cswimr/actions | container | digest | `34b46b4` -> `722287a` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ny4wIiwidXBkYXRlZEluVmVyIjoiMzkuODcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #16 Co-authored-by: Renovate <renovate@coastalcommits.com> Co-committed-by: Renovate <renovate@coastalcommits.com>
28 lines
758 B
YAML
28 lines
758 B
YAML
name: Actions
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- '!gauntlet/release'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Plugins
|
|
runs-on: docker
|
|
container: www.coastalcommits.com/cswimr/actions:yarn@sha256:722287afc7b0bf131ef46764987abdfa09c56cd4c61776a7977294bd4f1062bd
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile
|
|
- name: Build plugins
|
|
run: yarn run build
|
|
- name: Upload build artifact
|
|
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
|
|
with:
|
|
name: plugins-build
|
|
path: dist/
|