Skip to content

Release of 3.8.3

Release of 3.8.3 #89

Workflow file for this run

name: 🚀 Release
on:
push:
tags:
- '*'
jobs:
packaging:
runs-on: ubuntu-latest
if: github.repository == '3liz/lizmap-web-client'
steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
ref: versions
fetch-depth: 0
token: ${{ secrets.BOT_HUB_TOKEN }}
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Add the version
run: ./add_version.py ${{ env.RELEASE_VERSION }}
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Publish ${{ env.RELEASE_VERSION }}"
commit_user_name: ${{ secrets.BOT_NAME }}
commit_user_email: ${{ secrets.BOT_MAIL }}
commit_author: ${{ secrets.BOT_NAME }}