Compare commits
18 commits
Author | SHA1 | Date | |
---|---|---|---|
716ce5ba25 | |||
33963fcd64 | |||
a0dbdd583e | |||
d1fba9c9d8 | |||
5af9737b2f | |||
d92c936819 | |||
5409085941 | |||
514d11ab87 | |||
55c25c68fd | |||
48fcd67d04 | |||
a37781d090 | |||
6955df2c72 | |||
cdc04949da | |||
df9d372406 | |||
9c9f24faa7 | |||
7b64752715 | |||
5065dd9737 | |||
58037e37c2 |
2 changed files with 46 additions and 2 deletions
44
.forgejo/workflows/fetch-upstream-cdi.yaml
Normal file
44
.forgejo/workflows/fetch-upstream-cdi.yaml
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
||||||
|
name: Fetch upstream (CDI)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- .forgejo/workflows/fetch-upstream-cdi.yaml
|
||||||
|
|
||||||
|
env:
|
||||||
|
# renovate: datasource=github-releases depName=kubevirt/containerized-data-importer
|
||||||
|
KUBEVIRTCDI_VERSION: v1.60.3
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
fetch-upstream:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Git setup
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
git config --global user.name 'Smeagol'
|
||||||
|
git config --global user.email 'smeagol@hsn.dev'
|
||||||
|
|
||||||
|
- name: Fetch files
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
git checkout -b cdi-${KUBEVIRTCDI_VERSION} main || git checkout cdi-${KUBEVIRTCDI_VERSION}
|
||||||
|
mkdir ./deploy
|
||||||
|
|
||||||
|
mv ./kustomization-cdi.tmpl.yaml ./deploy/kustomization.yaml
|
||||||
|
curl -vL -o ./deploy/1-cdi-operator.yaml https://github.com/kubevirt/containerized-data-importer/releases/download/${KUBEVIRTCDI_VERSION}/cdi-operator.yaml
|
||||||
|
curl -vL -o ./deploy/2-cdi-cr.yaml https://github.com/kubevirt/containerized-data-importer/releases/download/${KUBEVIRTCDI_VERSION}/cdi-cr.yaml
|
||||||
|
|
||||||
|
git add ./deploy || true
|
||||||
|
git commit -m "feat: cdi-${KUBEVIRTCDI_VERSION}" || true
|
||||||
|
|
||||||
|
git push origin cdi-${KUBEVIRTCDI_VERSION} || true
|
|
@ -11,14 +11,14 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# renovate: datasource=github-releases depName=kubevirt/kubevirt
|
# renovate: datasource=github-releases depName=kubevirt/kubevirt
|
||||||
KUBEVIRT_VERSION: v1.2.2
|
KUBEVIRT_VERSION: v1.3.1
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
fetch-upstream:
|
fetch-upstream:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue