Skip to content

Commit cab4e12

Browse files
committedDec 29, 2020
migrate CI to GitHub Actions
1 parent b9e7d40 commit cab4e12

File tree

6 files changed

+47
-40
lines changed

6 files changed

+47
-40
lines changed
 

‎.github/workflows/check.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

‎.github/workflows/deploy.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

‎.travis.yml

-15
This file was deleted.

‎.travis/deploy.sh

-24
This file was deleted.

‎.travis/deploy_key.gpg

-2.5 KB
Binary file not shown.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ReaTeam JSFX Repository
22

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)
44

55
Community-maintained collection of JS effects for REAPER.
66

0 commit comments

Comments
 (0)
Please sign in to comment.