Release 7.39_JET_1.19 #10
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
--- | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'doc/**' | |
- '.github/workflows/build-docs.yml' | |
branches: | |
- master | |
pull_request: | |
paths: | |
- 'doc/**' | |
- '.github/workflows/build-docs.yml' | |
branches: | |
- master | |
env: | |
TARGET: manual | |
TARGET_FINAL: XCSoar-docs | |
TARGET_EXT: pdf | |
jobs: | |
xcsoar-compile: | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: false | |
- id: repository | |
uses: ASzc/change-string-case-action@v1 | |
with: | |
string: ${{ github.repository }} | |
- name: find githash | |
run: | | |
echo "git_hash=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV | |
- name: XCSoar generate Docs | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ghcr.io/${{ steps.repository.outputs.lowercase }}/xcsoar-build:latest | |
options: -v ${{ github.workspace }}:/opt/xcsoar | |
run: | | |
cd /opt/xcsoar | |
make manual V=2 | |
- name: upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.TARGET_FINAL }}-${{ env.git_hash }} | |
path: output/${{ env.TARGET }}/*.${{ env.TARGET_EXT }} |