workflow-test/.gitea/workflows/pipeline.yaml
Jonas Forsberg 5288d8db3d
Some checks failed
Testing pipes / Explore-Gitea-Actions (push) Failing after 31s
.
2024-10-14 16:38:34 +02:00

28 lines
992 B
YAML

name: Testing pipes
on:
push:
branches:
- main
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repo code
uses: actions/checkout@v3
- run: echo "Testing testing"
- run: cat ./README.md
- run: cat /etc/os-release
- run: pwd
- run: curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /usr/share/keyrings/helm.gpg > /dev/null
- run: apt-get update
- run: apt-get install apt-transport-https --yes
- run: 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
- run: sudo apt update
- run: sudo apt install helm --yes
- shell: bash
env:
REPO_PASSWORD: ${{ secrets.REPO_LOGIN }}
run: |
helm registry login https://$REPO_HOST --username $REPO_USERNAME --password $REPO_PASSWORD