Skip to content

Test package workflow #2

Test package workflow

Test package workflow #2

Workflow file for this run

name: 'Package Charts'
on:
# ON RELEASE
# This uses the release description to find realms to build and package
# Packages are then uploaded to that release
release:
types:
- 'published'
# test:
push:
jobs:
package:

Check failure on line 14 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
runs-on: 'ubuntu-latest'
defaults:
run:
working-directory: './.github/workflows/scripts'
steps:
- uses: 'actions/checkout@v4'
- name: 'Set up Helm'
run: |
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
sudo apt-get install apt-transport-https --yes
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm
- name: 'Automatically update chart versions'
run: 'GIT_COMMIT=1 ./update_versions.sh'
# - name: 'Package Charts'
# run: './.github/workflows/scripts/'
# - name: 'Update Chart Index'
# run: 'echo TODO'
# - name: 'Upload Artefacts'
# run: 'echo TODO'