Skip to content

Commit

Permalink
Merge pull request #129 from tsunny/add-github-actions
Browse files Browse the repository at this point in the history
Adding github workflows
  • Loading branch information
gautam2187 committed Aug 6, 2020
2 parents 83df395 + c469736 commit ccec459
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build-workflow
# This workflow is triggered on pushes to the repository.
on: [push]

jobs:
build:
name: build-job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build
run: |
wget https://storage.googleapis.com/kubernetes-helm/helm-v2.8.2-linux-amd64.tar.gz -O /tmp/helm-v2.8.2-linux-amd64.tar.gz
mkdir /tmp/bin -p; tar xzf /tmp/helm-v2.8.2-linux-amd64.tar.gz -C /tmp/bin --strip-components=1;
PATH=/tmp/bin:$PATH helm init --client-only
cd base-image && make
cd ../config-reloader && make build-image
cd ../log-router
PATH=$PATH:/tmp/bin make helm-package

0 comments on commit ccec459

Please sign in to comment.