diff options
| author | PProvost <[email protected]> | 2020-05-14 13:37:37 -0600 |
|---|---|---|
| committer | PProvost <[email protected]> | 2020-05-14 13:37:37 -0600 |
| commit | 2efcfc4ad97e53826371539f9b4f431fa4357a02 (patch) | |
| tree | 47be569be093c54e693f0df20c3abe6830878928 | |
| parent | 710a8b8d536f1d3065412d4781cc3b08cd7b8b89 (diff) | |
Typo in cache updater
| -rw-r--r-- | .github/workflows/cache-update.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/cache-update.yml b/.github/workflows/cache-update.yml index 30928a99..8d0e9962 100644 --- a/.github/workflows/cache-update.yml +++ b/.github/workflows/cache-update.yml @@ -4,8 +4,15 @@ on: schedule: - cron: '*/30 * * * *' # every 30m for testing +# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # Cache location for arm tools + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: # Cache location for arm tools - name: Cache arm-none-eabi-gcc tools id: cache-arm-gcc uses: actions/cache@v1 |
