From 537eaac694f23a1dd31ef49e568061dadc7a043d Mon Sep 17 00:00:00 2001 From: Oscar Levin Date: Fri, 9 Aug 2024 18:37:05 -0600 Subject: [PATCH] Slightly edit comments in hopes I will receive notifications after commit --- .github/workflows/deploy-nightly.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-nightly.yml b/.github/workflows/deploy-nightly.yml index 58b726d1..ada624ca 100644 --- a/.github/workflows/deploy-nightly.yml +++ b/.github/workflows/deploy-nightly.yml @@ -1,10 +1,11 @@ name: deploy-nightly + on: schedule: - # * is a special character in YAML so you have to quote this string + # * is a special character in YAML so you have to quote this string. - cron: "00 6 * * *" - # Allows you to run this workflow manually from the Actions tab + # Allows you to run this workflow manually from the Actions tab. workflow_dispatch: jobs: @@ -17,7 +18,7 @@ jobs: name: Deploy to pypi runs-on: ubuntu-latest steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it. - uses: actions/checkout@v3 # Sets up python3