Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMilarky authored Sep 17, 2024
1 parent bbba790 commit 9f048c1
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,23 @@ jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "✏️ Generate release changelog"
uses: heinrichreimer/action-github-changelog-generator@v2.3
with:
base: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
- run: |
git config user.name 'GitHub Actions'
git config user.email 'actions@users.noreply.github.com'
git add -A
timestamp=$(date -u)
git commit -m "update ${{ matrix.orgs }} data: ${timestamp}" || exit 0
- name: Push to ${{ github.ref_name }}
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.REPOLINTER_AUTO_TOKEN }}
branch: ${{ github.ref_name }}

build:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 9f048c1

Please sign in to comment.