-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to deploy changes to Dedicateds channel (#552)
* Add workflow to deploy changes to Dedicateds channel * Test * Finish
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Deploy changes to Dedicateds channel | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-changes: | ||
timeout-minutes: 3 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Generate channel name | ||
id: get-chart-version | ||
shell: bash | ||
run: | | ||
# Share the variable for further steps | ||
echo "version=$(yq .version -r chart/Chart.yaml)" >> "$GITHUB_OUTPUT" | ||
- name: Publish changes into channel | ||
uses: ./.github/actions/publish-release | ||
with: | ||
replicated-channel: "Dedicateds" | ||
version: ${{ steps.get-chart-version.outputs.version }} | ||
release-notes: "CARTO Self-Hosted version generated from main branch." | ||
trigger-action: "dev" | ||
gcloud-service-account: ${{ secrets.CARTO_ARTIFACTS_SERVICE_ACCOUNT }} | ||
replicated-api-token: ${{ secrets.REPLICATED_API_TOKEN }} |