Skip to content

Commit

Permalink
Merge pull request #8 from penumbra-zone/5-auto-deploys
Browse files Browse the repository at this point in the history
ci: add auto-deploy workflow
  • Loading branch information
conorsch authored Oct 28, 2024
2 parents 6306ad5 + a9f23d0 commit ec5a67b
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
---
name: Create and publish container image
on:
# Build on merge to main, or any tag push.
push:
branches:
- main
tags:
- '**[0-9]+.[0-9]+.[0-9]+*'
# Also support ad-hoc calls for workflow.
# Don't build on merge into main:
# instead, we'll trigger the container build via the "deploy" workflow,
# which runs on merge to main.
# push:
# branches:
# - main
# tags:
# - '**[0-9]+.[0-9]+.[0-9]+*'
# Also support ad-hoc and per-repo calls to trigger builds.
workflow_call:
workflow_dispatch:
repository_dispatch:
jobs:
penumbers:
runs-on: buildjet-16vcpu-ubuntu-2204
Expand Down
56 changes: 56 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
# Workflow for deploying the Insights dashboard webapp https://github.com/penumbra-zone/penumbers
# Bounces a container deployment, to repull the latest image.
name: deploy insights
on:
workflow_dispatch:
push:
branches:
- main

jobs:
build-container:
name: build container
uses: ./.github/workflows/container.yml
secrets: inherit
permissions:
contents: read
packages: write

deploy:
name: deploy insights
env:
DIGITALOCEAN_ACCESS_TOKEN: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
needs:
- build-container
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- uses: actions/checkout@v4

- name: install nix
uses: nixbuild/nix-quick-install-action@v28

- name: setup nix cache
uses: nix-community/cache-nix-action@v5
with:
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }}
restore-prefixes-first-match: nix-${{ runner.os }}-
backend: buildjet

# Confirm that the nix devshell is buildable and runs at all.
- name: validate nix env
run: nix develop --command echo hello

- name: save DigitalOcean kubeconfig with short-lived credentials
run: >
nix develop --command
doctl kubernetes cluster kubeconfig save --expiry-seconds 600 plinfra
# We assume that dex-explorer has been deployed to the cluster already.
# This task merely "bounces" the service, so that a fresh container is pulled.
- name: deploy dex-explorer
run: >
nix develop --command
kubectl -n mainnet rollout restart deployment insights &&
nix develop --command
kubectl -n mainnet rollout status deployment insights

0 comments on commit ec5a67b

Please sign in to comment.