Create Pre-release #233
Workflow file for this run
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
name: Create Pre-release | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+' | |
env: | |
CHART_NAME: common | |
CHART_DIR: "charts/common" | |
HELM_REPO_BASE_URL: https://activiti.github.io/activiti-cloud-helm-charts | |
HELM_REPO: Activiti/activiti-cloud-helm-charts | |
HELM_REPO_NAME: activiti-cloud-helm-charts | |
HELM_REPO_BRANCH: gh-pages | |
HELM_REPO_SUBFOLDER: . | |
jobs: | |
prerelease: | |
runs-on: ubuntu-latest | |
env: | |
VERSION: ${{ github.ref_name }} | |
steps: | |
- uses: actions/checkout@v3 | |
- id: helm-package-chart | |
name: Package Helm chart | |
uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | |
with: | |
chart-dir: ${{ env.CHART_DIR }} | |
- id: helm-publish-chart | |
name: Publish Helm chart | |
uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | |
with: | |
chart-package: ${{ steps.helm-package-chart.outputs.package-file-path }} | |
helm-charts-repo: ${{ env.HELM_REPO }} | |
helm-charts-repo-branch: ${{ env.HELM_REPO_BRANCH }} | |
helm-charts-repo-subfolder: ${{ env.HELM_REPO_SUBFOLDER }} | |
helm-charts-repo-base-url: ${{ env.HELM_REPO_BASE_URL }} | |
token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
git-username: ${{ secrets.BOT_GITHUB_USERNAME }} | |
- uses: Activiti/activiti-scripts/.github/actions/wait-for-chart@develop | |
with: | |
chart-name: ${{ env.CHART_NAME }} | |
version: ${{ env.VERSION }} | |
helm-repo-name: ${{ env.HELM_REPO_NAME }} | |
helm-repo-url: ${{ env.HELM_REPO_BASE_URL }} | |
notify: | |
runs-on: ubuntu-latest | |
needs: | |
- prerelease | |
if: always() && failure() && github.event_name == 'push' | |
steps: | |
- name: Slack Notification | |
uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | |
with: | |
channel-id: 'eng-hxp-studio-releases-gh-notifs' | |
token: ${{ secrets.SLACK_NOTIFICATION_BOT_TOKEN }} |