-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 936 Bytes
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Release hollow-metadataservice helm chart
on:
push:
tags:
- '*.*.*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout tag
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Publish Helm Chart
uses: tylerauerbeck/helm-gh-pages@main
with:
token: ${{ secrets.PUBLIC_REPO_GH_PAT }}
charts_dir: .
charts_url: 'https://helm.equinixmetal.com'
repository: 'charts'
branch: gh-pages
app_version: ${{ github.ref_name }}
chart_version: ${{ github.ref_name }}
gh-release:
name: Create GitHub Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true