-
Notifications
You must be signed in to change notification settings - Fork 37
37 lines (36 loc) · 1.22 KB
/
notify-providers.yaml
File metadata and controls
37 lines (36 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Notify Remote Providers
on:
push:
# branches:
# - 'master'
tags:
- 'v*'
paths-ignore:
- 'docs/**'
- 'mesheryctl/**'
jobs:
notify-remote-provider-build:
name: Notify Remote Providers of Release
if: github.repository == 'meshery-extensions/shape-builder'
runs-on: ubuntu-24.04
steps:
- name: trigger plugins for edge
if: startsWith(github.ref, 'refs/tags/') != true && success()
uses: layer5io/trigger-remote-provider-action@master
with:
name: "Build and Publish"
repo: layer5labs/meshery-extensions
token: ${{ secrets.GH_ACCESS_TOKEN }}
version: master
- name: set env
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/') && success()
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
- name: trigger plugins for release
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/') && success()
uses: layer5io/trigger-remote-provider-action@master
with:
name: "Build and Publish"
repo: layer5labs/meshery-extensions
token: ${{ secrets.GH_ACCESS_TOKEN }}
version: ${{ steps.vars.outputs.tag }}