Skip to content

Commit

Permalink
ci: add vicuna image to weekly container builds
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Feb 3, 2024
1 parent 215e0c9 commit a2b81ff
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/container_weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ on:
- cron: "0 6 * * 6" # develop, corev
- cron: "0 12 * * 6" # develop, dev
- cron: "0 18 * * 6" # develop, ara
- cron: "0 20 * * 6" # develop, vicuna

jobs:
minimal:
Expand Down Expand Up @@ -71,6 +72,10 @@ jobs:
then
echo "branch=develop" >> $GITHUB_OUTPUT
echo "template=ara" >> $GITHUB_OUTPUT
elif [[ "${{github.event.schedule}}" == "0 20 * * 6" ]]
then
echo "branch=develop" >> $GITHUB_OUTPUT
echo "template=vicuna" >> $GITHUB_OUTPUT
else
echo "Invalid!"
exit 1
Expand Down Expand Up @@ -186,6 +191,10 @@ jobs:
then
echo "branch=develop" >> $GITHUB_OUTPUT
echo "template=ara" >> $GITHUB_OUTPUT
elif [[ "${{github.event.schedule}}" == "0 20 * * 6" ]]
then
echo "branch=develop" >> $GITHUB_OUTPUT
echo "template=vicuna" >> $GITHUB_OUTPUT
else
echo "Invalid!"
exit 1
Expand Down Expand Up @@ -297,6 +306,10 @@ jobs:
then
echo "branch=develop" >> $GITHUB_OUTPUT
echo "template=ara" >> $GITHUB_OUTPUT
elif [[ "${{github.event.schedule}}" == "0 20 * * 6" ]]
then
echo "branch=develop" >> $GITHUB_OUTPUT
echo "template=vicuna" >> $GITHUB_OUTPUT
else
echo "Invalid!"
exit 1
Expand Down

0 comments on commit a2b81ff

Please sign in to comment.