aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSebastian Ehlert <28669218+awvwgk@users.noreply.github.com>2021-11-02 16:21:31 +0100
committerGitHub <noreply@github.com>2021-11-02 16:21:31 +0100
commita460e2760a4e33f086c9e1669b08e53885bdc197 (patch)
tree83fb8f0135d398a20a1cfea74d8dc43e77ee9bd4 /README.md
parent02fdf8dde8877cf2ac738fed8d20561da16cec1f (diff)
downloadfpm-a460e2760a4e33f086c9e1669b08e53885bdc197.tar.gz
fpm-a460e2760a4e33f086c9e1669b08e53885bdc197.zip
Add workflow for continuous delivery (#569)
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0613b3d..72be678 100644
--- a/README.md
+++ b/README.md
@@ -32,12 +32,15 @@ non-Fortran related package manager.
### Setting up fpm
#### Binary download
-`x86-64` binaries are available [to download](https://github.com/fortran-lang/fpm/releases) for Windows, MacOS and Linux.
+
+Binaries for the latest stable release are available [to download](https://github.com/fortran-lang/fpm/releases/latest) for Windows, MacOS, and Linux.
__Note:__ On Linux and MacOS, you will need to enable executable permission before you can use the binary.
_e.g._ `$ chmod u+x fpm-0.4.0-linux-x86_64`
+The binaries at the [current tag](https://github.com/fortran-lang/fpm/releases/tag/current) are updated automatically to always provide the current git version from the default branch.
+
#### [Conda]
@@ -147,7 +150,7 @@ To build manually using the single source distribution, run the following code (
```
mkdir _tmp
-curl -LJ https://github.com/fortran-lang/fpm/releases/download/v0.4.0/fpm-0.4.0.F90 > _tmp/fpm.F90
+curl -LJ https://github.com/fortran-lang/fpm/releases/download/current/fpm.F90 > _tmp/fpm.F90
gfortran -J _tmp _tmp/fpm.F90 -o _tmp/fpm
_tmp/fpm install --flag "-g -fbacktrace -O3"
rm -r _tmp