2024-10-14 13:12:49 +00:00
|
|
|
name: Testing pipes
|
|
|
|
on:
|
|
|
|
push:
|
2024-10-14 13:14:32 +00:00
|
|
|
branches:
|
2024-10-14 13:12:49 +00:00
|
|
|
- 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
|
2024-10-14 13:17:16 +00:00
|
|
|
- run: cat /etc/os-release
|
2024-10-14 13:30:19 +00:00
|
|
|
- run: pwd
|
2024-10-14 13:50:27 +00:00
|
|
|
- run: sudo apt update
|
2024-10-14 13:49:12 +00:00
|
|
|
- run: sudo apt install helm
|
|
|
|
- run: echo $REPO_PASSWORD | helm registry login https://$REPO_HOST --username $REPO_USERNAME --password-stdin
|