/
githubmirror
/
certbot
Обзор
Документация
Войти
/
githubmirror
/
certbot
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/create_changelog.yml
27 строк
911 B
ohemorange
Migrate release pipeline from azure to github actions (#10643)
10 июн 2026, 21:43
Не верифицирован
10 июн 2026, 21:43
cb02885
Код
Авторство
О чём код?
name: Create changelog on: workflow_call: permissions: contents: read jobs: prepare: name: Changelog runs-on: ubuntu-latest steps: # If we change the output filename from `release_notes.md`, it should also be changed in .github/workflows/release.yml - name: checkout uses: actions/checkout@v6.0.2 with: persist-credentials: false - name: Prepare changelog run: |- CERTBOT_VERSION="$(cd certbot/src && python -c "import certbot; print(certbot.__version__)" && cd ~-)" tools/extract_changelog.py "${CERTBOT_VERSION}" >> "${{ runner.temp }}/release_notes.md" shell: bash - name: Publish changelog uses: actions/upload-artifact@v7.0.0 with: # If we change the artifact's name, it should also be changed in .github/workflows/release.yml name: changelog path: "${{ runner.temp }}/release_notes.md"