Push Helm #265
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: Push Helm | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
# run every 6 hours | |
- cron: '0 0,6,12,18 * * *' | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
name: Helm Push Demo | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Push | |
id: push | |
uses: ./ | |
with: | |
api-key: ${{ secrets.CLOUDSMITH_API_KEY }} | |
command: "push" | |
format: "helm" | |
owner: "cloudsmith" | |
repo: "actions" | |
republish: "true" # needed ONLY if version is not changing | |
file: "test/fixture/cloudsmith-helm-example-1.0.0.tar.gz" #real file that will repeat versions |