Skip to content

Commit

Permalink
import from mono-repo and related updates
Browse files Browse the repository at this point in the history
  • Loading branch information
a3s7p committed Jul 9, 2021
0 parents commit 339a0b6
Show file tree
Hide file tree
Showing 37 changed files with 2,155 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Main

on:
pull_request:
types: [opened, synchronize, reopened, labeled]
push:
branches:
- master
tags:
- 'v*'

jobs:
build:
name: Test, build & deploy
runs-on: ubuntu-latest
if: github.repository == 'wireleap/relay' && (github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'testable'))
steps:
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check out private build action
uses: actions/checkout@v2
with:
fetch-depth: 1
repository: wireleap/gh-build
token: ${{ secrets.ASSEMBLY_TOKEN }}
path: .github/actions/gh-build
- name: Run component build action
uses: ./.github/actions/gh-build
with:
token: ${{ secrets.ASSEMBLY_TOKEN }}
ssh_key: ${{ secrets.SSH_KEY }}
upload_target: ${{ secrets.UPLOAD_TARGET }}
gpg_key: ${{ secrets.GPG_KEY }}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build/

sub/initcmd/embedded/*
!sub/initcmd/embedded/*.go
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright 2021 Wireleap

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 339a0b6

Please sign in to comment.