103 lines
3.4 KiB
YAML
103 lines
3.4 KiB
YAML
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version'
|
|
required: true
|
|
|
|
jobs:
|
|
release-moto-job:
|
|
runs-on: ubuntu-latest
|
|
name: Release Moto
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
env:
|
|
VERSION: 0.0.0
|
|
steps:
|
|
- name: Set Env
|
|
run: |
|
|
echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install wheel setuptools packaging twine build --upgrade
|
|
pip install -r requirements-dev.txt
|
|
- name: Verify Tag does not exist
|
|
run: |
|
|
! git rev-parse ${{ env.VERSION }} || { echo "Ensure that no tag exists for ${{ env.VERSION }}" ; exit 1; }
|
|
- name: Verify supplied version exists in the CHANGELOG
|
|
run: |
|
|
grep ${{ env.VERSION }} CHANGELOG.md || { echo "Ensure that the CHANGELOG contains an entry for ${{ env.VERSION }}" ; exit 1; }
|
|
- name: Set version number
|
|
run: python update_version_from_git.py ${{ env.VERSION }}
|
|
- name: Build Python
|
|
run: python -m build
|
|
- name: Build Docker release
|
|
run: |
|
|
docker build -t motoserver/moto . --tag moto:${{ env.VERSION }}
|
|
- name: Test Docker release
|
|
run: |
|
|
docker run -p 5000:5000 --name moto motoserver/moto &
|
|
TEST_SERVER_MODE=true pytest -sv tests/test_core tests/test_s3/test_s3.py
|
|
docker stop moto
|
|
- name: Publish to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
- name: Tag version on Github
|
|
run: |
|
|
git tag ${{ env.VERSION }}
|
|
git push origin ${{ env.VERSION }}
|
|
- name: Create GitHub release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
name: ${{ env.VERSION }}
|
|
tag_name: ${{ env.VERSION }}
|
|
files: dist/*
|
|
# Required to get the correct Digest
|
|
# See https://github.com/docker/build-push-action/issues/461
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Login to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Push to DockerHub and GHCR
|
|
id: build_and_push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: |
|
|
motoserver/moto:${{ env.VERSION }}
|
|
ghcr.io/getmoto/motoserver:${{ env.VERSION }}
|
|
- name: Increase patch version number
|
|
run: |
|
|
python update_version_from_git.py patch
|
|
sed -i 's/Docker Digest for ${{ env.VERSION }}: <autopopulateddigest>/Docker Digest for ${{ env.VERSION }}: _${{ steps.build_and_push.outputs.digest }}_/' CHANGELOG.md
|
|
git config --local user.email "admin@getmoto.org"
|
|
git config --local user.name "Moto Admin"
|
|
git add moto/__init__.py
|
|
git add CHANGELOG.md
|
|
git commit -m "Post-release steps"
|
|
git push
|