Skip to content

Set version to 1.13.1 #10

Set version to 1.13.1

Set version to 1.13.1 #10

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.1
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@6004951b182f8860210c8d6f0d808ec5b1a33d28 # v25
with:
nix_path: nixpkgs=channel:nixos-21.05
- name: Print nixpkgs version
run: nix-instantiate --eval -E '(import <nixpkgs> {}).lib.version'
- name: Build website (${{ env.SHARRY_VERSION }})
run: nix-shell project/microsite.nix --run "sbt microsite/makeMicrosite"
- name: Publish website (${{ env.SHARRY_VERSION }})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: nix-shell project/microsite.nix --run "sbt microsite/publishMicrosite"