Merge pull request #430 from nautobot/develop #78
Workflow file for this run
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
--- | |
# spell-checker: disable | |
name: "Release" | |
on: # yamllint disable-line rule:truthy | |
push: | |
tags: "*" | |
jobs: | |
release: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Publish Helm charts" | |
uses: "stefanprodan/[email protected]" | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
dependencies: "bitnami,https://charts.bitnami.com/bitnami" | |
publish-oci: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Publish Helm charts to OCI" | |
uses: "appany/[email protected]" | |
with: | |
name: "nautobot" | |
repository: "nautobot/helm-charts" | |
tag: "${{ github.ref_name }}" | |
path: "charts/nautobot" | |
registry: "ghcr.io" | |
registry_username: "${{ secrets.REGISTRY_USERNAME }}" | |
registry_password: "${{ secrets.REGISTRY_PASSWORD }}" | |
update_dependencies: false |