mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
c0bcee870e
* bump actions to node 16 / current releases * fix merge
53 lines
1.8 KiB
YAML
53 lines
1.8 KiB
YAML
# 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
|
|
|
|
tweet:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: Eomm/why-don-t-you-tweet@5936bb1fd0096b1c2bbbb7518746638261bb4dae # pin@v1.0.1
|
|
with:
|
|
tweet-message: "InvenTree release ${{ github.event.release.tag_name }} is out
|
|
now! Release notes: ${{ github.event.release.html_url }} #opensource
|
|
#inventree"
|
|
env:
|
|
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
|
|
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
|
|
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
|
|
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
|
|
|
|
reddit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: bluwy/release-for-reddit-action@4b2d034b5c86a24db24363f1064149a8c2db69b4 # pin@v1.2.0
|
|
with:
|
|
username: ${{ secrets.REDDIT_USERNAME }}
|
|
password: ${{ secrets.REDDIT_PASSWORD }}
|
|
app-id: ${{ secrets.REDDIT_APP_ID }}
|
|
app-secret: ${{ secrets.REDDIT_APP_SECRET }}
|
|
subreddit: InvenTree
|
|
title: "InvenTree version ${{ github.event.release.tag_name }} released"
|
|
comment: "${{ github.event.release.body }}"
|