Skip to content

Merge pull request #1323 from near/develop #61

Merge pull request #1323 from near/develop

Merge pull request #1323 from near/develop #61

Workflow file for this run

name: Automatic Github Releases
on:
push:
branches:
- "main"
jobs:
update_release_draft:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Get current date
id: date
run: echo "tag=$(date +'%m-%d-%Y')" >> "$GITHUB_OUTPUT"
- uses: actions/checkout@v4
- uses: ncipollo/[email protected]
with:
generateReleaseNotes: true
tag: ${{ steps.date.outputs.tag }}
makeLatest: true
allowUpdates: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}