Skip to content

Commit

Permalink
Replace schedule with release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sergcpp committed Oct 18, 2024
1 parent 91844bd commit 5d5f5e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/actions/checkout/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ runs:
cd Ray
git remote set-url origin $REPO_URL
git fetch --all
echo "111"
git checkout -f $GITHUB_REF_NAME
git reset --hard origin/$GITHUB_REF_NAME
echo "222"
#git reset --hard origin/$GITHUB_REF_NAME
echo "333"
git clean -fdx
git fetch --tags
else
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Schedule
name: Release

on:
schedule:
- cron: '0 2 * * *' # Run every day at 1 o'clock
pull_request:
branches:
- 'releases/**'

jobs:
build-windows-x86_64-rel:
Expand Down

0 comments on commit 5d5f5e2

Please sign in to comment.