Skip to content

Commit

Permalink
Add connector job
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Martinez committed Nov 8, 2021
1 parent e3975d0 commit 2372597
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 4 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cga-connector.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: CGA Connector

on:
pull_request:
paths:
- .github/workflows/cga-connector.yml
- cga-connector/**

defaults:
run:
shell: bash

jobs:

install-cga-connector:
name: Install CGA Connector Unattended
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v2

- name: Install
run: sudo ./cga-connector/scripts/install-cga-connector-linux.sh -u
8 changes: 4 additions & 4 deletions .github/workflows/cga-proxy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Proxy
name: CGA Proxy

on:
pull_request:
Expand All @@ -13,13 +13,13 @@ defaults:

jobs:

install-proxy:
name: Install Proxy Unattended
install-cga-proxy:
name: Install CGA Proxy Unattended
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v2

- name: Install
run: ./cga-proxy/scripts/install-cga-proxy-linux.sh -u -p 443
run: sudo ./cga-proxy/scripts/install-cga-proxy-linux.sh -u -p 443

0 comments on commit 2372597

Please sign in to comment.