Create monthly-tag.yml (#56)
* Create monthly-tag.yml * Create mathlab_versioning.py
This commit is contained in:
46
.github/workflows/monthly-tag.yml
vendored
Normal file
46
.github/workflows/monthly-tag.yml
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
name: Monthly Automated Tag
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '15 18 * * *'
|
||||
|
||||
jobs:
|
||||
|
||||
test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [windows-latest, macos-latest, ubuntu-latest]
|
||||
python-version: [3.7, 3.8]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
python3 -m pip install .[test]
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
python3 -m pytest
|
||||
|
||||
monthly_tag:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.NDEMO_PAT_TOKEN }}
|
||||
|
||||
- name: Create and push the tag
|
||||
run: |
|
||||
python utils/mathlab_versioning.py set --only-date "post$(date +%y%m)"
|
||||
VERS=$(python utils/mathlab_versioning.py get)
|
||||
git config --global user.name 'Monthly Tag bot'
|
||||
git config --global user.email 'mtbot@noreply.github.com'
|
||||
git add pina/meta.py
|
||||
git commit -m "monthly version $VERS"
|
||||
git tag -a "v$VERS" -m "Monthly version $VERS"
|
||||
git push origin "v$VERS"
|
||||
Reference in New Issue
Block a user