Re-enable publish and use this repos action (#85) #49
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "*.*.*" | |
permissions: | |
contents: read | |
packages: write | |
env: | |
BASE_IMAGE: mcr.microsoft.com/dotnet/nightly/runtime-deps:8.0-jammy-chiseled-aot | |
DOCKER_TAG: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && 'latest;edge' || 'edge' }} | |
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/[email protected] | |
- name: Build documentation | |
uses: elastic/doc-builder@main | |
with: | |
prefix: '${{ steps.repo-basename.outputs.value }}' | |
- name: Upload artifact | |
uses: actions/[email protected] | |
with: | |
path: .artifacts/docs/html | |
- name: Deploy artifact | |
id: deployment | |
uses: actions/[email protected] | |
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 app | |
run: | | |
dotnet publish "src/docs-builder/docs-builder.csproj" \ | |
/t:PublishContainer \ | |
-p DebugType=none \ | |
-p ContainerUser=1001:1001 \ | |
-p ContainerBaseImage=${{ env.BASE_IMAGE }} \ | |
-p ContainerRegistry=ghcr.io \ | |
-p ContainerImageTags='"${{ env.DOCKER_TAG }};${{ steps.bootstrap.outputs.full-version }}"' \ | |
-p ContainerRepository=${{ github.repository }} \ |