workflow-test/.gitea/workflows/image-build.yaml
Jonas Forsberg 2a5139e9b0
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 13s
.
2024-10-15 15:22:43 +02:00

23 lines
618 B
YAML

name: Lint and Test Charts
on:
push:
# Pattern matched against refs/tags
tags:
- '**' # Push events to every tag including hierarchical tags like v1.0/beta
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out code
- uses: mr-smithers-excellent/docker-build-push@v6
name: Build & push Container image
with:
image: library/azure-agent
registry: repo.rre.nu
dockerfile: Containerfile
username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_LOGIN }}