chore: License change date for 1.5.4 (#2244) #8
Workflow file for this run
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
name: Publish docs | |
on: | |
push: | |
tags: ["v*"] | |
permissions: | |
# pushing to docs/kalix-current branch (see docs/bin/deploy.sh) | |
contents: write | |
jobs: | |
push-documentation: | |
name: Push documentation to docs/kalix-current | |
runs-on: ubuntu-22.04 | |
if: github.event.repository.fork == false | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v4.1.1 | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Set up JDK 17 | |
# https://github.com/coursier/setup-action/releases | |
# v1.3.5 | |
uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f | |
with: | |
jvm: temurin:1.17.0.5 | |
- name: Publish docs | |
run: make -C docs deploy | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |