typo fix point#4 #31
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: Run Release Tracker | |
on: | |
push: | |
branches: | |
- gh-pages | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4.1.1 | |
- name: Get Commit Message | |
id: commit-message | |
run: echo "message=$(git log -1 --pretty=%B)" >> $GITHUB_OUTPUT | |
- name: Run Bash Script | |
env: | |
COMMIT_MESSAGE: ${{ steps.commit-message.outputs.message }} | |
REPO_NAME: ${{ github.repository }} | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
run: | | |
echo "Current commit message: $COMMIT_MESSAGE" | |
echo "Repo Name: $REPO_NAME" | |
chmod +x ./release-tracker-github.sh | |
./release-tracker-github.sh |