Skip to content

Set version to 1.14.0 #15

Set version to 1.14.0

Set version to 1.14.0 #15

Workflow file for this run

name: Publish Website
on:
push:
branches:
- "current-docs"
jobs:
publish-website:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.6
with:
fetch-depth: 0
- name: Set current version
run: echo "SHARRY_VERSION=$(cat version.sbt | grep version | cut -d= -f2 | xargs)" >> $GITHUB_ENV
- uses: cachix/install-nix-action@v27
- name: Build website (${{ env.SHARRY_VERSION }})
run: nix develop .#ci --command sbt microsite/makeMicrosite
- name: Publish website (${{ env.SHARRY_VERSION }})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: nix develop .#ci --command sbt microsite/publishMicrosite