mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
4034349043
* Use github token for version check - Should prevent 403 errors * Use github token when running version update in unit test
28 lines
708 B
YAML
28 lines
708 B
YAML
# Runs on releases
|
|
|
|
name: Publish release notes
|
|
on:
|
|
release:
|
|
types: [ published ]
|
|
|
|
jobs:
|
|
|
|
stable:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
|
- name: Version Check
|
|
run: |
|
|
pip install requests
|
|
python3 ci/version_check.py
|
|
- name: Push to Stable Branch
|
|
uses: ad-m/github-push-action@4dcce6dea3e3c8187237fc86b7dfdc93e5aaae58 # pin@master
|
|
if: env.stable_release == 'true'
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: stable
|
|
force: true
|