bump Starlette to 0.45.3 to fix problem with static files #154
Workflow file for this run
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: Upload Python Package | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- v** | |
jobs: | |
#depending on pytest workflow, see https://stackoverflow.com/a/71489231/364388 | |
pytest: | |
uses: ./.github/workflows/pytest.yml | |
pypi: | |
runs-on: ubuntu-latest | |
needs: pytest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up Poetry | |
uses: abatilo/[email protected] | |
- name: set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "poetry" | |
- name: get version | |
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
- name: set version | |
run: | | |
VERSION=${{ env.VERSION }} | |
poetry version ${VERSION#v} | |
- name: publish | |
env: | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }} | |
run: poetry publish --build | |
- name: Create GitHub release entry | |
uses: softprops/action-gh-release@v2 | |
id: create_release | |
with: | |
draft: false | |
prerelease: false | |
name: ${{ env.VERSION }} | |
tag_name: ${{ env.VERSION }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: verify | |
shell: bash | |
run: | | |
for i in {1..100}; do | |
if python -m pip install "rosys==${{ env.VERSION }}"; then | |
echo "Successfully installed rosys version ${{ env.VERSION }}" | |
break | |
else | |
echo "Attempt $i failed. Retrying in 2 seconds..." | |
sleep 2 | |
fi | |
done | |
if [ $i -eq 100 ]; then | |
echo "Failed to install rosys after 100 attempts" | |
exit 1 | |
fi | |
docker: | |
needs: pypi | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare | |
id: prep | |
run: | | |
DOCKER_IMAGE=${{ secrets.DOCKER_USERNAME }}/${GITHUB_REPOSITORY#*/} | |
VERSION=latest | |
SHORTREF=${GITHUB_SHA::8} | |
# If this is git tag, use the tag name as a docker tag | |
if [[ $GITHUB_REF == refs/tags/* ]]; then | |
VERSION=${GITHUB_REF#refs/tags/v} | |
fi | |
TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:${SHORTREF}" | |
# If the VERSION looks like a version number, assume that | |
# this is the most recent version of the image and also | |
# tag it 'latest'. | |
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then | |
TAGS="$TAGS,${DOCKER_IMAGE}:latest" | |
fi | |
# Set output parameters. | |
echo "tags=${TAGS}" >> $GITHUB_OUTPUT | |
echo "docker_image=${DOCKER_IMAGE}" >> $GITHUB_OUTPUT | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Login to DockerHub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build both platforms and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
build-args: INSTALL_DEV=true | |
push: true | |
tags: ${{ steps.prep.outputs.tags }} | |
cache-from: | | |
type=registry,ref=${{ steps.prep.outputs.docker_image }}:buildcache-amd64 | |
type=registry,ref=${{ steps.prep.outputs.docker_image }}:buildcache-arm64 | |
- name: Cache linux/amd64 to registry | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
platforms: linux/amd64 | |
build-args: INSTALL_DEV=true | |
push: false | |
cache-from: type=registry,ref=${{ steps.prep.outputs.docker_image }}:buildcache-amd64 | |
cache-to: type=registry,ref=${{ steps.prep.outputs.docker_image }}:buildcache-amd64,mode=max | |
- name: Cache linux/arm64 to registry | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
platforms: linux/arm64 | |
build-args: INSTALL_DEV=true | |
push: false | |
cache-from: type=registry,ref=${{ steps.prep.outputs.docker_image }}:buildcache-arm64 | |
cache-to: type=registry,ref=${{ steps.prep.outputs.docker_image }}:buildcache-arm64,mode=max | |
- name: Update README | |
uses: christian-korneck/update-container-description-action@v1 | |
env: | |
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASS: ${{ secrets.DOCKER_PASSWORD }} | |
with: | |
destination_container_repo: zauberzeug/rosys | |
provider: dockerhub | |
short_description: "A robot system based on web technologies with focus on autonomous mobile robots." | |
docs: | |
runs-on: ubuntu-latest | |
needs: pypi | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python3 -m pip install -r mkdocs_requirements.txt | |
python3 -m pip install -e . | |
- name: Build docs | |
run: mkdocs build -v | |
- name: Deploy gh-pages | |
uses: JamesIves/[email protected] | |
with: | |
folder: site |