Skip to content

Commit

Permalink
add tag workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed May 12, 2022
1 parent 3562f67 commit ede6a88
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: tag

on:
workflow_dispatch: {}
schedule:
- cron: '0 3 * * *'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Bump version and push tag
uses: mathieudutour/github-tag-action@v6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ede6a88

Please sign in to comment.