ci: organize CI in jobs and update ci deps #12
Workflow file for this run
This file contains hidden or 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: Deploy to prod when tag | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| bump-version: | |
| name: Bump version to ${{ github.ref_name }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: Bump version in pyproject.toml and uv.lock to ${{ github.ref_name }} | |
| run: | | |
| sed -i 's/^ *version.*=.*"\([^"]*\)".*/version = "${{ github.ref_name }}"/' ./pyproject.toml | |
| uv lock | |
| - name: Commit and push updated pyproject.toml | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| branch: main | |
| commit_message: "chore: bump version to ${{ github.ref_name }}" | |
| commit_user_name: Adrien Carpentier | |
| commit_user_email: [email protected] | |
| commit_author: Adrien Carpentier <[email protected]> | |
| deploy-prod: | |
| name: Deploy ${{ github.ref_name }} to prod | |
| needs: bump-version | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Execute server commands for deploy | |
| uses: appleboy/ssh-action@v1 | |
| with: | |
| host: ${{ secrets.SSH_HOST }} | |
| username: ${{ secrets.SSH_USER }} | |
| key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| script: | | |
| cd /home/www/word-generator-api | |
| git fetch | |
| git reset --hard origin/main | |
| /usr/local/bin/uv sync | |
| wget https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.5.0/fr_core_news_sm-3.5.0-py3-none-any.whl -P ./assets | |
| unzip assets/fr_core_news_sm-3.5.0-py3-none-any.whl -d ./.venv/lib/python3.12/site-packages && chmod -R 777 ./.venv/lib/python3.12/site-packages/fr_core_news_sm-3.5.0.dist-info | |
| rm -f assets/fr_core_news_sm-3.5.0-py3-none-any.whl | |
| sudo systemctl restart word-generator-api.service | |
| - name: Create Sentry release | |
| uses: getsentry/action-release@v3 | |
| env: | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
| SENTRY_ORG: "adrien-carpentier" | |
| SENTRY_PROJECT: "word-generator-api" | |
| with: | |
| environment: production | |
| release: ${{ github.ref_name }} |