Add private input to publish explicitly #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre-release main branch | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
outputs: | |
full-version: ${{ steps.bootstrap.outputs.full-version }} | |
major-version: ${{ steps.bootstrap.outputs.major-version }} | |
needs: [build] | |
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@v4 | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v5.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@v3.0.1 | |
with: | |
path: .artifacts/docs/html | |
- name: Deploy artifact | |
id: deployment | |
uses: actions/deploy-pages@v4.0.5 | |
build: | |
runs-on: ubuntu-latest | |
outputs: | |
full-version: ${{ steps.bootstrap.outputs.full-version }} | |
major-version: ${{ steps.bootstrap.outputs.major-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bootstrap Action Workspace | |
id: bootstrap | |
uses: ./.github/actions/bootstrap | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish Containers | |
run: ./build.sh publishcontainers |