chore(deps): bump serde from 1.0.197 to 1.0.204 #18
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: Docker | ||
on: | ||
schedule: | ||
- cron: "15 14 * * *" | ||
push: | ||
paths: | ||
- "charts/**" | ||
branches: ["main", "staging"] | ||
# Publish semver tags as releases. | ||
tags: ["v*.*.*"] | ||
pull_request: | ||
branches: ["main"] | ||
workflow_dispatch: | ||
jobs: | ||
docker: | ||
uses: appany/[email protected] | ||
with: | ||
name: chisel-operator | ||
repository: chisel-operator | ||
tag: 0.1.0 | ||
path: charts/chisel-operator | ||
registry: ghcr.io | ||
registry_username: ${{ github.actor }} | ||
registry_password: ${{ secrets.GITHUB_TOKEN }} | ||
update_dependencies: 'true' # Defaults to false | ||
permissions: | ||
contents: read | ||
packages: write | ||
# This is used to complete the identity challenge | ||
# with sigstore/fulcio when running outside of PRs. | ||
id-token: write |