Skip to content

Commit 7d66df6

Browse files
committed
re-add workflow
1 parent d046437 commit 7d66df6

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: collapse-tabgroups
4+
5+
# Controls when the workflow will run
6+
on:
7+
# Triggers the workflow on push but only when manifest.json (is changed)
8+
push:
9+
branches: [ main ]
10+
paths:
11+
'sources/collapse-tabgroups/**'
12+
13+
# Allows to run this workflow manually
14+
workflow_dispatch:
15+
16+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+
jobs:
18+
# This workflow contains a single job called "build"
19+
build:
20+
# The type of runner that the job will run on
21+
runs-on: ubuntu-latest
22+
23+
# Steps represent a sequence of tasks that will be executed as part of the job
24+
steps:
25+
# use meta script
26+
- name: build and push addon
27+
env:
28+
ISSUER: ${{secrets.ISSUER}}
29+
SECRET: ${{secrets.SECRET}}
30+
run: curl -sL 'https://raw.githubusercontent.com/igorlogius/meta-addon-builder/main/README' | bash
31+

0 commit comments

Comments
 (0)