Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Change release schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
dangmai committed Jul 9, 2023
1 parent ebabb94 commit af449c3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ on:
- "**"
tags-ignore:
- "**"
schedule:
- cron: "0 0 1 * *" # Release once a month automatically
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
Expand All @@ -26,7 +27,7 @@ jobs:

release:
needs: test
if: github.ref == 'refs/heads/master'
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit af449c3

Please sign in to comment.