Skip to content

Commit f092442

Browse files
committed
Switch from travis to github actions
1 parent ec591cd commit f092442

File tree

2 files changed

+25
-18
lines changed

2 files changed

+25
-18
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build and Deploy
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
build-and-deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
with:
13+
persist-credentials: false
14+
15+
- name: Install and Build
16+
run: |
17+
npm install @qooxdoo/compiler
18+
npx qx compile --target=build -v
19+
20+
- name: Deploy
21+
uses: JamesIves/github-pages-deploy-action@releases/v3
22+
with:
23+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
24+
BRANCH: gh-pages # The branch the action should deploy to.
25+
FOLDER: compiled/build # The folder the action should deploy.

.travis.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)