Skip to content

Commit

Permalink
remove test schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasmcnulty committed Nov 23, 2022
1 parent 7b1f4e3 commit 2ede4ab
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/create-tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@ name: Create weekly tags for releases
on:
schedule:
- cron: "25 5 * * 0" # Sunday at 5:25 AM UTC
- cron: "*/10 * * * *" # TEST (remove)
jobs:
create-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d-%H%M%S')" # Remove time
run: echo "::set-output name=date::$(date +'%Y%m%d')" # Remove time
- uses: rickstaa/action-create-tag@v1
with:
tag: "xena-${{ steps.date.outputs.date }}"
Expand Down

0 comments on commit 2ede4ab

Please sign in to comment.