File tree Expand file tree Collapse file tree 9 files changed +156
-0
lines changed
Expand file tree Collapse file tree 9 files changed +156
-0
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff 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
910done
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments