We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f0823 commit 3100010Copy full SHA for 3100010
.github/workflows/publish-release.yaml
@@ -9,6 +9,7 @@ on:
9
env:
10
REGISTRY: ghcr.io/stackhpc
11
TAG: ${{ github.ref_name }}
12
+ RELEASE_ALIAS_TAG: ${{ github.ref_name }}
13
14
jobs:
15
build_push_images:
@@ -30,3 +31,19 @@ jobs:
30
31
32
- name: Push images
33
run: make docker-push-all
34
+
35
+ build_push_manifests:
36
+ name: Build and public manifests
37
+ runs-on: ubuntu-latest
38
+ # Only build and push the chart if the images built successfully
39
+ needs: [build_push_images]
40
+ steps:
41
+ - name: Check out the repository
42
+ uses: actions/checkout@v2
43
44
+ - name: Generate manifest
45
+ run: make staging-manifests
46
47
+ - name: Publish release
48
+ uses: softprops/action-gh-release@v1
49
+ files: ./infrastructure-components.yaml
0 commit comments