-
Notifications
You must be signed in to change notification settings - Fork 43
76 lines (65 loc) · 1.95 KB
/
prerelease.yml
File metadata and controls
76 lines (65 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Pre-release main branch
on:
push:
branches:
- main
permissions: {}
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
outputs:
full-version: ${{ steps.bootstrap.outputs.full-version }}
major-version: ${{ steps.bootstrap.outputs.major-version }}
needs: [build]
concurrency:
group: deploy-to-github-pages
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- id: repo-basename
run: 'echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT'
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Pages
id: pages
uses: actions/configure-pages@v6.0.0
- name: Build documentation
uses: elastic/docs-builder@main
with:
prefix: '${{ steps.repo-basename.outputs.value }}'
- name: Upload artifact
uses: actions/upload-pages-artifact@v5.0.0
with:
path: .artifacts/docs/html
- name: Deploy artifact
id: deployment
uses: actions/deploy-pages@v5.0.0
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
outputs:
full-version: ${{ steps.bootstrap.outputs.full-version }}
major-version: ${{ steps.bootstrap.outputs.major-version }}
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Bootstrap Action Workspace
id: bootstrap
uses: ./.github/actions/bootstrap
- name: Login to GitHub Container Registry
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Containers
run: ./build.sh publishcontainers