Update CHANGELOG.md #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
permissions: | |
contents: write | |
actions: read | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- CHANGELOG.md | |
branches: | |
- main | |
jobs: | |
build-runspace: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Build project | |
shell: pwsh | |
run: | | |
Set-ExecutionPolicy Bypass -Scope Process -Force; ./build.ps1 | |
continue-on-error: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Commit 'itt' file | |
run: | | |
git config --global user.name "emadadel4" | |
git config --global user.email "[email protected]" | |
git add itt.ps1 | |
git commit -m "update" | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |