File tree 6 files changed +47
-40
lines changed
6 files changed +47
-40
lines changed Original file line number Diff line number Diff line change
1
+ name : check
2
+ on : [push, pull_request]
3
+ jobs :
4
+ reapack-index :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - name : Fetch repository
8
+ uses : actions/checkout@v2
9
+ - name : Install Pandoc
10
+ run : sudo apt-get install -yy pandoc
11
+ - name : Set up Ruby
12
+ uses : ruby/setup-ruby@v1
13
+ with :
14
+ ruby-version : 2.7
15
+ - name : Install reapack-index
16
+ run : gem install reapack-index --pre
17
+ - name : Validate packages
18
+ run : reapack-index --check
Original file line number Diff line number Diff line change
1
+ name : deploy
2
+ on :
3
+ push :
4
+ branches : [master]
5
+ jobs :
6
+ reapack-index :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Fetch repository
10
+ uses : actions/checkout@v2
11
+ with :
12
+ fetch-depth : 0
13
+ - name : Configure git
14
+ run : |-
15
+ git config user.name 'ReaTeam Bot'
16
+ git config user.email 'reateam-bot@cfillion.ca'
17
+ - name : Install Pandoc
18
+ run : sudo apt-get install -yy pandoc
19
+ - name : Set up Ruby
20
+ uses : ruby/setup-ruby@v1
21
+ with :
22
+ ruby-version : 2.7
23
+ - name : Install reapack-index
24
+ run : gem install reapack-index --pre
25
+ - name : Update index.xml
26
+ run : reapack-index --commit
27
+ - name : Push changes
28
+ run : git push
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# ReaTeam JSFX Repository
2
2
3
- [ ![ Build status ] ( https://travis-ci.org /ReaTeam/JSFX.svg?branch=master )] ( https://travis-ci.org/ReaTeam/JSFX )
3
+ ![ check ] ( https://github.com /ReaTeam/JSFX/workflows/check/badge.svg )
4
4
5
5
Community-maintained collection of JS effects for REAPER.
6
6
You can’t perform that action at this time.
0 commit comments