Update rock #2687
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: Update rock | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: '0 0,4,8,12,16,20 * * *' | |
jobs: | |
build: | |
uses: canonical/observability/.github/workflows/rock-update.yaml@main | |
with: | |
rock-name: traefik | |
source-repo: traefik/traefik | |
check-go: true | |
update-script: | | |
# The caller must provide \$application_src and \$rockcraft_yaml | |
# \$application_src: The root folder of the cloned upstream project | |
# \$rockcraft_yaml: Path of the rockcraft.yaml to update | |
# | |
## traefik-frontend dependency | |
source_tag=$(yq .parts.traefik.source-tag $rockcraft_yaml) | |
tag="\$source_tag" yq -i '.parts.traefik-frontend.source-tag = strenv(tag)' $rockcraft_yaml | |
## traefik environment variable | |
yq -i 'del(.parts.traefik.build-environment.[] | select (.TRAEFIK_VERSION))' $rockcraft_yaml | |
tag="\$source_tag" yq -i '.parts.traefik.build-environment += [{"TRAEFIK_VERSION": strenv(tag)}]' $rockcraft_yaml |