Updated name of v6 announcement, some tweaks to release announcement #762
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
repository_dispatch: | |
types: [release] | |
schedule: | |
- cron: '0 0,6,12,18 * * *' | |
jobs: | |
release-site: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 21 | |
- uses: gradle/actions/[email protected] | |
- name: Build | |
timeout-minutes: 25 | |
run: ./gradlew check | |
- name: Setup Hugo | |
uses: peaceiris/[email protected] | |
with: | |
hugo-version: 'latest' | |
extended: true | |
- name: Build | |
run: hugo --minify -s src/website | |
- name: Deploy | |
uses: peaceiris/[email protected] | |
with: | |
personal_token: ${{ secrets.TOOLBOX_REPO_TOKEN }} | |
external_repository: http4k/http4k.github.io | |
publish_branch: master | |
publish_dir: build/www | |
cname: www.http4k.org |