Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: release

on:
# Build/Release on demand
workflow_dispatch:
push:
tags:
- "*" # Tags that trigger a new release version

permissions:
contents: write
pull-requests: read

jobs:
tests:
uses: ./.github/workflows/tests.yaml

release:
runs-on: ubuntu-latest
environment: release
needs: tests
# Only release when there's a tag for the release.
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Update axiom
run: |
curl -X POST ${{ secrets.AXIOM_WEBHOOK_URL }} \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.AXIOM_WEBHOOK_SECRET }}" \
-d '{"event_type":"update-launchpad-version", "client_payload": {"version":"${{github.ref_name}}"}}'

5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@

# Launchpad

Launchpad provides the best developer experience for deploying any application to Kubernetes. Skip writing pages of Kubernetes YAML, and deploy in seconds with Launchpad's minimal deployment config.
Deploy any application to Kubernetes with Launchpad. Skip writing pages of Kubernetes YAML, and deploy in seconds with Launchpad's minimal deployment config.

### Build and deploy with a single command

Launchpad up can build any image, push to your Docker registry, and generate Helm charts in one step.

## Get started

https://www.jetpack.io/docs/
https://www.jetpack.io/launchpad/docs/

## Build from source

Expand Down