release #2
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: release | |
"on": | |
workflow_dispatch: | |
schedule: | |
- cron: "0 8 * * 1" | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PERSONAL_TOKEN }} | |
- name: Setup nodejs | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install releaser | |
run: | | |
npm install -g \ | |
[email protected] \ | |
[email protected] \ | |
@semantic-release/changelog \ | |
@semantic-release/git | |
- name: Run releaser | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }} | |
run: semantic-release | |
- name: Write buildtime | |
run: date >| .github/RELEASE | |
- name: Update repo | |
run: git pull --rebase --autostash | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: GitHub Actions | |
author_email: [email protected] | |
add: .github/RELEASE | |
message: "docs: automated release update [skip ci]" | |
push: true | |
commit: --signoff | |
... |