Skip to content

Commit f333145

Browse files
authoredJun 2, 2023
Merge pull request #1441 from tkatila/release-0.27-prep
Release 0.27 creation
2 parents 819d302 + 64beeed commit f333145

File tree

67 files changed

+93
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+93
-92
lines changed
 

‎.github/workflows/publish.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
push:
55
branches:
66
- main
7-
- release-0.24
87
- release-0.25
98
- release-0.26
9+
- release-0.27
1010

1111
permissions:
1212
contents: read
@@ -47,36 +47,36 @@ jobs:
4747
- uses: actions/checkout@v3
4848
with:
4949
fetch-depth: 0
50-
ref: release-0.24
51-
- name: Build release-0.24
50+
ref: release-0.25
51+
- name: Build release-0.25
5252
run: |
5353
GITHUB_SHA=$(git rev-parse HEAD)
5454
export GITHUB_SHA
5555
rm -rf _work/venv
5656
make vhtml
57-
mv _build/html $HOME/output/0.24
57+
mv _build/html $HOME/output/0.25
5858
- uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.25
62-
- name: Build release-0.25
61+
ref: release-0.26
62+
- name: Build release-0.26
6363
run: |
6464
GITHUB_SHA=$(git rev-parse HEAD)
6565
export GITHUB_SHA
6666
rm -rf _work/venv
6767
make vhtml
68-
mv _build/html $HOME/output/0.25
68+
mv _build/html $HOME/output/0.26
6969
- uses: actions/checkout@v3
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.26
73-
- name: Build release-0.26
72+
ref: release-0.27
73+
- name: Build release-0.27
7474
run: |
7575
GITHUB_SHA=$(git rev-parse HEAD)
7676
export GITHUB_SHA
7777
rm -rf _work/venv
7878
make vhtml
79-
mv _build/html $HOME/output/0.26
79+
mv _build/html $HOME/output/0.27
8080
- name: Deploy the docs
8181
shell: bash
8282
env:

‎Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ pipeline {
142142
stage('make test-with-kind') {
143143
steps {
144144
dir(path: "$REPO_DIR") {
145-
sh "make test-with-kind REG=intel/ TAG=devel"
145+
sh "make test-with-kind REG=intel/ TAG=0.27.0"
146146
}
147147
}
148148
}

0 commit comments

Comments
 (0)