workflow-test/.gitea/workflows/image-build.yaml

23 lines
618 B
YAML
Raw Normal View History

2024-10-15 09:07:22 +00:00
name: Lint and Test Charts
2024-10-15 13:22:43 +00:00
on:
push:
# Pattern matched against refs/tags
tags:
- '**' # Push events to every tag including hierarchical tags like v1.0/beta
2024-10-15 09:07:22 +00:00
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
2024-10-15 13:22:43 +00:00
name: Build & push Container image
2024-10-15 09:20:01 +00:00
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 }}