Skip to content

Commit 7b22296

Browse files
committed
[SPARK-52105] Provide Helm Chart repository
### What changes were proposed in this pull request? This PR aims to publish `gh_pages` branch to https://apache.github.io/spark-kubernetes-operator . ### Why are the changes needed? To use it as a Helm Chart repository. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? This should be tested after merging. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#191 from dongjoon-hyun/SPARK-52105. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent dbd8013 commit 7b22296

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.github/workflows/pages.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one
3+
# or more contributor license agreements. See the NOTICE file
4+
# distributed with this work for additional information
5+
# regarding copyright ownership. The ASF licenses this file
6+
# to you under the Apache License, Version 2.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
# KIND, either express or implied. See the License for the
16+
# specific language governing permissions and limitations
17+
# under the License.
18+
#
19+
20+
name: GitHub Pages deployment
21+
22+
on:
23+
push:
24+
branches:
25+
- gh-pages
26+
27+
jobs:
28+
docs:
29+
name: Build and deploy documentation
30+
runs-on: ubuntu-latest
31+
permissions:
32+
id-token: write
33+
pages: write
34+
environment:
35+
name: github-pages # https://github.com/actions/deploy-pages/issues/271
36+
if: github.repository == 'apache/spark-kubernetes-operator'
37+
steps:
38+
- name: Checkout repository
39+
uses: actions/checkout@v4
40+
- name: Setup Pages
41+
uses: actions/configure-pages@v5
42+
- name: Upload artifact
43+
uses: actions/upload-pages-artifact@v3
44+
with:
45+
path: '.'
46+
- name: Deploy to GitHub Pages
47+
id: deployment
48+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)