Skip to content

Commit cc0296f

Browse files
authoredMay 15, 2024
Merge pull request #1736 from tkatila/prep-0.30
Prep 0.30
2 parents 6a01e75 + 7b3eef0 commit cc0296f

File tree

66 files changed

+169
-98
lines changed

Some content is hidden

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

66 files changed

+169
-98
lines changed
 

‎.github/workflows/publish.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
push:
55
branches:
66
- main
7-
- release-0.27
87
- release-0.28
98
- release-0.29
9+
- release-0.30
1010

1111
permissions:
1212
contents: read
@@ -47,36 +47,36 @@ jobs:
4747
- uses: actions/checkout@v4
4848
with:
4949
fetch-depth: 0
50-
ref: release-0.27
51-
- name: Build release-0.27
50+
ref: release-0.28
51+
- name: Build release-0.28
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.27
57+
mv _build/html $HOME/output/0.28
5858
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 0
61-
ref: release-0.28
62-
- name: Build release-0.28
61+
ref: release-0.29
62+
- name: Build release-0.29
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.28
68+
mv _build/html $HOME/output/0.29
6969
- uses: actions/checkout@v4
7070
with:
7171
fetch-depth: 0
72-
ref: release-0.29
73-
- name: Build release-0.29
72+
ref: release-0.30
73+
- name: Build release-0.30
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.29
79+
mv _build/html $HOME/output/0.30
8080
- name: Deploy the docs
8181
shell: bash
8282
env:

‎Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ clean:
137137

138138
ORG?=intel
139139
REG?=$(ORG)/
140-
TAG?=devel
140+
TAG?=0.30.0
141141
export TAG
142142

143143
ifeq ($(E2E_LEVEL), $(filter $(E2E_LEVEL), full))

0 commit comments

Comments
 (0)
Please sign in to comment.