Skip to content

AUTOMATION: Changelog update #6

AUTOMATION: Changelog update

AUTOMATION: Changelog update #6

Workflow file for this run

name: Jc Test
on:
push:
branches:
- jcrelease
jobs:
publish:
name: Release build and publish
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/[email protected]
with:
ref: jcrelease
persist-credentials: false
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: adopt
java-version: 17
- name: Commit changes
run: |
echo "Something" > something.txt
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add something.txt
git commit -m "AUTOMATION: Changelog update"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.STREAM_PUBLIC_BOT_TOKEN }}
branch: jcrelease