mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-25 09:09:07 +00:00
32 lines
794 B
YAML
32 lines
794 B
YAML
name: release
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 3 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
# Prevent this workflow from running elsewhere.
|
|
if: github.repository_owner == 'php-curl-class'
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install requirements
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install --requirement scripts/requirements.txt
|
|
|
|
- name: Set git details
|
|
run: |
|
|
git config --global user.name "github-actions[bot]"
|
|
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
- name: Make release
|
|
run: python scripts/make_release.py
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|