Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up a few things after the 0.7 release #983

Merged
merged 6 commits into from
Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mkdir -p "$BIN"
is_exe() { [[ -x "$1/$2$EXT" ]] || command -v "$2" > /dev/null 2>&1; }

extract_exe() {
exe="$(find "${3:-dist-newstyle}" -type f -name "$1$EXT")"
exe="$(find "${3:-dist-newstyle}" -type f -name "$1$EXT | sort -g | tail -1")"
name="$(basename "$exe")"
echo "Copying $name to $2"
mkdir -p "$2"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Docker
on:
push:
tags: ["v?[0-9]+.[0-9]+.[0-9]+"]
tags: ["v?[0-9]+.[0-9]+.([0-9]+)?"]

jobs:
saw:
Expand Down
2 changes: 1 addition & 1 deletion saw-script.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: saw-script
Version: 0.6.0.99
Version: 0.7.0.99
Author: Galois Inc.
Maintainer: [email protected]
Build-type: Custom
Expand Down