Skip to content
Merged
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
7 changes: 5 additions & 2 deletions .github/actions/publish-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ runs:
gsutil -h "Cache-Control:public,max-age=3600,s-maxage=3600" -m rsync -x "^index.yaml$" -d packages-selfhosted-charts/ "gs://${CHARTS_BUCKET}"
gsutil -h "Cache-Control:public,max-age=180,s-maxage=30" cp packages-selfhosted-charts/index.yaml "gs://${CHARTS_BUCKET}"


# Step 7: Upload to Replicated
- name: Upload release to Replicated
shell: bash
Expand All @@ -100,7 +101,9 @@ runs:
REPLICATED_API_TOKEN: ${{ inputs.replicated-api-token }}
run: |
cp carto-${{ inputs.version }}*.tgz manifests/
replicated release create -y --auto \
replicated release create -y --yaml-dir manifests/ \
--promote "${{inputs.replicated-channel}}" \
--version "${{inputs.version}}" \
--release-notes "${{ inputs.release-notes }}"
--release-notes "${{ inputs.release-notes }}" \
--ensure-channel \
--debug