Skip to content

Commit 8d94478

Browse files
committed
Removing travis, adding build badge for github actions and adding
capability to deploy to github pages
1 parent 0c4bf18 commit 8d94478

File tree

3 files changed

+19
-31
lines changed

3 files changed

+19
-31
lines changed

.github/workflows/github-pages.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Deploy to GitHub Pages
5+
6+
on:
7+
release:
8+
types: [ created ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Deploy GitHub Pages
16+
run: |
17+
chmod ugo+x scripts/publish-javadocs-to-github-pages.sh
18+
bash scripts/publish-javadocs-to-github-pages.sh

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# selenium-pom-framework
2-
[![Build Status](https://travis-ci.com/digital-delivery-academy/selenium-pom-framework.svg?branch=master)](https://travis-ci.com/digital-delivery-academy/selenium-pom-framework)
2+
[![GitHub Actions Build](https://github.com/digital-delivery-academy/selenium-pom-framework/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/digital-delivery-academy/selenium-pom-framework/actions/workflows/maven.yml)
33
[![GitHub Issues badge](https://img.shields.io/github/issues-raw/digital-delivery-academy/selenium-pom-framework?color=green)](https://github.com/digital-delivery-academy/selenium-pom-framework/issues)
44
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors)
55

0 commit comments

Comments
 (0)