Skip to content

Commit

Permalink
Use version in justfile itself
Browse files Browse the repository at this point in the history
  • Loading branch information
psibi committed Jun 19, 2023
1 parent 22c6bfa commit b136b7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Build
on:
pull_request:
push:
tags:
- '*'
branches:
- master

Expand All @@ -13,8 +15,6 @@ jobs:
steps:
- name: Clone project
uses: actions/checkout@v2
with:
submodules: "true"
- uses: extractions/setup-just@v1
with:
just-version: 1.8.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ these things:
- Optionally, you can update the SHA of the base alpine image in the
ghc-musl.nix file. It's optional, but good to have latest stable
alpine image as the base image.
- Update the [justfile](./justfile) with the new GHC tag.
- Update the stack version in the [Dockerfile](./Dockerfile).
- Create a PR to this repository. Once it's merged, create a tag and
it will push the image to ghcr.io
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GHC_VERSION := `git describe --abbrev=0`
GHC_VERSION := "9.4.5"

# List all recipies
default:
Expand Down

0 comments on commit b136b7c

Please sign in to comment.