mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix for stable release (#4006)
- Was disabled, as it was bundled in with the social media workflows - Splits out into separate workflow
This commit is contained in:
parent
eb630a343b
commit
1b168ba904
25
.github/workflows/release.yml
vendored
Normal file
25
.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Runs on releases
|
||||||
|
|
||||||
|
name: Publish release notes
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [ published ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
stable:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
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
|
@ -7,23 +7,6 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
stable:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
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
|
|
||||||
|
|
||||||
tweet:
|
tweet:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
Loading…
Reference in New Issue
Block a user