mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2025-05-29 01:35:28 +08:00
![dependabot[bot]](/git/assets/img/avatar_default.png)
Bumps [peaceiris/actions-hugo](https://github.com/peaceiris/actions-hugo) from 2.5.0 to 2.6.0. - [Release notes](https://github.com/peaceiris/actions-hugo/releases) - [Changelog](https://github.com/peaceiris/actions-hugo/blob/main/CHANGELOG.md) - [Commits](https://github.com/peaceiris/actions-hugo/compare/v2.5.0...v2.6.0) --- updated-dependencies: - dependency-name: peaceiris/actions-hugo dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
40 lines
900 B
YAML
40 lines
900 B
YAML
name: Daily Test
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '13 13 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- 'ubuntu-22.04'
|
|
- 'ubuntu-20.04'
|
|
- 'ubuntu-latest'
|
|
- 'macos-latest'
|
|
- 'windows-latest'
|
|
hugo-version:
|
|
- 'latest'
|
|
- '0.61.0'
|
|
extended:
|
|
- true
|
|
- false
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Hugo
|
|
uses: peaceiris/actions-hugo@v2.6.0
|
|
with:
|
|
hugo-version: ${{ matrix.hugo-version }}
|
|
extended: ${{ matrix.extended }}
|
|
|
|
- name: Run hugo version
|
|
run: echo "::set-output name=hugo_version::$(hugo version)"
|
|
id: hugo_version
|
|
|
|
- name: '${{ steps.hugo_version.outputs.hugo_version }}'
|
|
run: echo '${{ steps.hugo_version.outputs.hugo_version }}'
|