This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
limit new releases to 1 year (#206) #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ArtifactHub Linter Push | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download ArtifactHUB CLI | |
run: | | |
wget https://github.com/artifacthub/hub/releases/download/v1.6.0/ah_1.6.0_linux_amd64.tar.gz | |
tar -xvf ah_1.6.0_linux_amd64.tar.gz | |
- name: Run linter | |
run: ./ah lint --kind keptn . |