Skip to content

Commit

Permalink
Merge 1eb996b into a9c557c
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoch authored Aug 27, 2022
2 parents a9c557c + 1eb996b commit 0663968
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'Tag and Release'

on:
pull_request: []
schedule:
# Once a month, first day of month
- cron: '0 0 1 * *'

jobs:
auto-scan:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set tag
run: |
today=$(printf '%(%Y-%m)T\n' -1)
echo $today
echo "tag=${today}" >> ${GITHUB_ENV}
- name: Tag and Release
uses: avakar/tag-and-release@8f4b627f03fe59381267d3925d39191e27f44236
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.tag }}

0 comments on commit 0663968

Please sign in to comment.