Skip to content

chore(deps): update ubuntu docker tag to v24 #41

chore(deps): update ubuntu docker tag to v24

chore(deps): update ubuntu docker tag to v24 #41

---
name: Build reference
"on":
workflow_dispatch:
push:
paths:
- .github/workflows/build-reference.yml
- Containerfile
- main.py
- output/*
- scripts/*
- templates/*
branches:
- main
pull_request:
paths:
- .github/workflows/build-reference.yml
- Containerfile
- main.py
- output/*
- scripts/*
- templates/*
jobs:
build-reference:
runs-on: ubuntu-latest
strategy:
matrix:
openstack_version:
- wallaby
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Install requirements
run: pip install -r requirements.txt
- name: Build documentation
run: scripts/build.sh
env:
VERSION: ${{ matrix.openstack_version }}
- name: Upload documentation
uses: SamKirkland/[email protected]
with:
local-dir: build/html/
password: ${{ secrets.FTP_PASSWORD }}
protocol: ftps
security: strict
server-dir: /
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
if: github.ref == 'refs/heads/main'