File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 6969 name: local-og-describer-template
7070 path: ./discovery/local.tar
7171 retention-days: 1
72+ - name: Add Tag to Release
73+ run: |
74+ echo "new_tag=${{ steps.tag_version.outputs.new_tag }}" >> "$GITHUB_OUTPUT"
75+ export TAG=${{ steps.tag_version.outputs.new_tag }}
76+ ./update-manifest.sh
77+ working-directory: ./platform/constants
78+ - name: Check manifest file
79+ run: cat ./platform/constants/manifest.yaml
7280 - name: Build Integration Plugin
7381 working-directory: ./platform
7482 run: make build
Original file line number Diff line number Diff line change 1- IntegrationType : template
1+ IntegrationType : template
2+ DescriberURL : ghcr.io/opengovern/og-describer-template
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ file_path=" manifest.yaml"
4+
5+ # Append multiple lines to the file
6+ cat << EOF >> "$file_path "
7+ DescriberTag: local-$TAG
8+ EOF
9+
10+ echo " Data has been appended to $file_path "
You can’t perform that action at this time.
0 commit comments