2024-10-15 09:07:22 +00:00
|
|
|
name: Lint and Test Charts
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint-test:
|
|
|
|
runs-on: ubuntu-latest
|
2024-10-15 09:20:01 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
name: Check out code
|
2024-10-15 09:07:22 +00:00
|
|
|
|
2024-10-15 09:20:01 +00:00
|
|
|
- uses: mr-smithers-excellent/docker-build-push@v6
|
|
|
|
name: Build & push Docker image
|
|
|
|
with:
|
2024-10-15 09:22:52 +00:00
|
|
|
image: library/azure-agent
|
2024-10-15 09:20:01 +00:00
|
|
|
registry: repo.rre.nu
|
|
|
|
dockerfile: Containerfile
|
|
|
|
username: ${{ secrets.REPO_USERNAME }}
|
2024-10-15 09:25:02 +00:00
|
|
|
password: ${{ secrets.REPO_LOGIN }}
|