feature: Configure renovate #2
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
# Copyright 2023 Canonical Ltd. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Release HPL ROCK to ghcr | |
on: | |
workflow_call: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt -y install skopeo | |
sudo snap install yq | |
- name: Log into ghcr | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Download latest packed HPL ROCK | |
uses: actions/download-artifact@v3 | |
with: | |
name: rock | |
- name: Push HPL ROCK to ghcr | |
run: | | |
image_name="$(yq '.name' rockcraft.yaml)" | |
version="$(yq '.version' rockcraft.yaml)" | |
rock_file=$(ls *.rock | tail -n 1) | |
sudo skopeo \ | |
--insecure-policy \ | |
copy \ | |
oci-archive:"${rock_file}" \ | |
docker-daemon:"ghcr.io/canonical/${image_name}:${version}" | |
docker push ghcr.io/canonical/${image_name}:${version} |