Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 790f159

Browse files
committed
Add triggers to update launchpad version in axiom
1 parent 97bccd4 commit 790f159

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

.github/workflows/release.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: release
2+
3+
on:
4+
# Build/Release on demand
5+
workflow_dispatch:
6+
push:
7+
tags:
8+
- "*" # Tags that trigger a new release version
9+
10+
permissions:
11+
contents: write
12+
pull-requests: read
13+
14+
jobs:
15+
tests:
16+
uses: ./.github/workflows/tests.yaml
17+
18+
release:
19+
runs-on: ubuntu-latest
20+
environment: release
21+
needs: tests
22+
# Only release when there's a tag for the release.
23+
if: startsWith(github.ref, 'refs/tags/')
24+
steps:
25+
- name: Update axiom
26+
run: |
27+
curl -X POST ${{ secrets.AXIOM_WEBHOOK_URL }} \
28+
-H "Accept: application/vnd.github+json" \
29+
-H "Authorization: Bearer ${{ secrets.AXIOM_WEBHOOK_SECRET }}" \
30+
-d '{"event_type":"update-launchpad-version", "client_payload": {"version":"${{github.ref_name}}"}}'
31+

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
21
# Launchpad
32

4-
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.
3+
Deploy any application to Kubernetes with Launchpad. Skip writing pages of Kubernetes YAML, and deploy in seconds with Launchpad's minimal deployment config.
54

65
### Build and deploy with a single command
76

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

109
## Get started
1110

12-
https://www.jetpack.io/docs/
11+
https://www.jetpack.io/launchpad/docs/
1312

1413
## Build from source
1514

0 commit comments

Comments
 (0)