Skip to content

Commit

Permalink
Merge pull request #69 from reload/feature/build-simpler
Browse files Browse the repository at this point in the history
Build Simpler <tm>
  • Loading branch information
achton authored Sep 19, 2024
2 parents 0848f0f + 01b3313 commit 6137dfe
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 261 deletions.
85 changes: 0 additions & 85 deletions .github/workflows/build-deploy.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "Build and push"
on:
push:
branches: [main]

jobs:
build:
name: Docker build and push
if: >
${{ !github.event.deleted &&
github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/[email protected]
with:
builder: ${{ steps.buildx.outputs.name }}
push: true
labels: |
org.opencontainers.image.source=https://github.com/${{ github.repository }}
org.opencontainers.image.version=${{ github.sha }}
org.opencontainers.image.revision=${{ github.sha }}
tags: |
ghcr.io/${{ github.repository }}:latest
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,3 @@ To recompile everything, simply run grunt from inside the container:
```
docker-compose run --rm node grunt
```

## Hosting
Timelord is currently hosted with Kubernetes at Google Cloud Platform in the project: `reload-internal-alpha`
It is deployed using [helm](https://helm.sh/docs/topics/charts/)
For more info, please see our [helm-chart](./helm-chart)
11 changes: 0 additions & 11 deletions helm-chart/README.md

This file was deleted.

23 changes: 0 additions & 23 deletions helm-chart/timelord/.helmignore

This file was deleted.

24 changes: 0 additions & 24 deletions helm-chart/timelord/Chart.yaml

This file was deleted.

36 changes: 0 additions & 36 deletions helm-chart/timelord/README.md

This file was deleted.

32 changes: 0 additions & 32 deletions helm-chart/timelord/templates/timelord-deployment.yaml

This file was deleted.

23 changes: 0 additions & 23 deletions helm-chart/timelord/templates/timelord-ingress.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions helm-chart/timelord/templates/timelord-service.yaml

This file was deleted.

10 changes: 0 additions & 10 deletions helm-chart/timelord/values.yaml

This file was deleted.

0 comments on commit 6137dfe

Please sign in to comment.