Skip to content

Commit

Permalink
Run a release monthly (#1039)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeilHanlon authored Jan 9, 2023
1 parent eb2a5a8 commit c463631
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create monthly release
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *"

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get current date
id: date
run: echo "::set-output name=tag::$(date +'%b-%Y')"
- name: Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
tag_name: "${{ steps.date.outputs.tag }}"

0 comments on commit c463631

Please sign in to comment.