-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure binary release logic to avoid races: 1. Prepare release with `create-release` and propagate upload URL to following step. 2. Build binaries and upload them to the previously created URL. Flaw in the ointment: action `upload-release-asset` is archived in favor of `softprops/action-gh-release`. However, I don't see how to use the latter without an extra artifact upload/download step, which seems stupid.
- Loading branch information
1 parent
ffd3511
commit e593b4a
Showing
6 changed files
with
167 additions
and
67 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,8 @@ maintainer: Liang-Ting Chen <[email protected]>, Andreas Abel | |
Category: Text | ||
Synopsis: Fixes whitespace issues. | ||
tested-with: | ||
GHC == 9.4.2 | ||
GHC == 9.2.4 | ||
GHC == 9.4.3 | ||
GHC == 9.2.5 | ||
GHC == 9.0.2 | ||
GHC == 8.10.7 | ||
GHC == 8.8.4 | ||
|
@@ -35,6 +35,8 @@ extra-source-files: | |
stack-8.10.7.yaml | ||
stack-9.0.2.yaml | ||
stack-9.2.4.yaml | ||
stack-9.2.5.yaml | ||
stack-9.4.3.yaml | ||
|
||
source-repository head | ||
type: git | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
resolver: nightly-2022-08-19 | ||
resolver: nightly-2022-11-12 | ||
compiler: ghc-9.2.4 | ||
compiler-check: match-exact | ||
|
||
extra-deps: | ||
- filepattern-0.1.3 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
resolver: lts-20.1 | ||
compiler: ghc-9.2.5 | ||
compiler-check: match-exact |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
resolver: nightly-2022-11-26 | ||
compiler: ghc-9.4.3 | ||
compiler-check: match-exact |