From 2ede4ab95364965e7fa86c22bab21df63e8ba993 Mon Sep 17 00:00:00 2001 From: Tobias McNulty Date: Wed, 23 Nov 2022 15:12:57 +0000 Subject: [PATCH] remove test schedule --- .github/workflows/create-tags.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/create-tags.yaml b/.github/workflows/create-tags.yaml index d302bdf..2e73a02 100644 --- a/.github/workflows/create-tags.yaml +++ b/.github/workflows/create-tags.yaml @@ -2,7 +2,6 @@ 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 @@ -10,7 +9,7 @@ jobs: - 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 }}"