Skip to content

Commit fee70c7

Browse files
committed
chore: rename skip-save to just-download
chore: active automate-click, dbl-click-dict, load-times and open-right-beside chore: add output to generated workflows to genWorkflows
1 parent 2747f8d commit fee70c7

File tree

9 files changed

+156
-0
lines changed

9 files changed

+156
-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: automate-click
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+
'automate-click/manifest.json'
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/READMEv2' | sh
31+
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: dbl-click-dict
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+
'dbl-click-dict/manifest.json'
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/READMEv2' | sh
31+
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: just-download
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+
'just-download/manifest.json'
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/READMEv2' | sh
31+

.github/workflows/load-times.yml

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: load-times
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+
'load-times/manifest.json'
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/READMEv2' | sh
31+
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: open-right-beside
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+
'open-right-beside/manifest.json'
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/READMEv2' | sh
31+

genWorkflows.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ for x in *;do
44
CODE=$(curl -sL -I "https://addons.mozilla.org/en-US/firefox/addon/$x" -w "%{http_code}" -o /dev/null)
55
if [ $CODE -eq 200 ];then
66
sed "s/PLACEHOLDER/$x/g" workflow-template.yml > .github/workflows/$x.yml
7+
echo .github/workflows/$x.yml
78
fi
89
fi
910
done

0 commit comments

Comments
 (0)