Skip to content

bump toc for 11.0.7 #65

bump toc for 11.0.7

bump toc for 11.0.7 #65

Workflow file for this run

# description of this workflow, can be anything you want
name: PushReadme
# we need to let GitHub know _when_ we want to release, typically only when we create a new tag.
# this will target only tags, and not all pushes to the master branch.
# this part can be heavily customized to your liking, like targeting only tags that match a certain word,
# other branches or even pullrequests.
on:
workflow_dispatch:
push:
paths:
- 'README.md'
# a workflow is built up as jobs, and within these jobs are steps
jobs:
# "request" is a job, you can name it anything you want
pushData:
runs-on: ubuntu-latest
steps:
- name: Clone project
uses: actions/checkout@v3
- name: Pushes readme to Website repo
if: github.ref == 'refs/heads/main'
uses: nkoppel/[email protected]
env:
API_TOKEN_GITHUB: ${{secrets.API_TOKEN_GITHUB}}
with:
source-files: 'README.md'
destination-repository: 'Jodsderechte.github.io'
destination-directory: 'Addons/DungeonAuraTools/'
destination-branch: 'main'
commit-email: ${{ secrets.USER_MAIL }}
destination-username: 'Jodsderechte'
commit-message: 'Update DungeonAuraTools for newest ReadMe version'