Skip to content

Commit

Permalink
fix workflow too (#792)
Browse files Browse the repository at this point in the history
* fix workflow too

* bump to 1.57.2
  • Loading branch information
ldemailly committed Jul 12, 2023
1 parent e541e39 commit 157dfd3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ jobs:
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825 # pin@v3
with:
context: .
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
# platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
platforms: linux/amd64,linux/arm64,linux/s390x
push: true
tags: fortio/fortio:${{ env.VERSION }}, fortio/fortio:latest

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- 1.57.1 -->
<!-- 1.57.2 -->
# Fortio

[![Awesome Go](https://fortio.org/mentioned-badge.svg)](https://github.com/avelino/awesome-go#networking)
Expand Down Expand Up @@ -60,13 +60,13 @@ You can install from source:
The [releases](https://github.com/fortio/fortio/releases) page has binaries for many OS/architecture combinations (see assets):

```shell
curl -L https://github.com/fortio/fortio/releases/download/v1.57.1/fortio-linux_amd64-1.57.1.tgz \
curl -L https://github.com/fortio/fortio/releases/download/v1.57.2/fortio-linux_amd64-1.57.2.tgz \
| sudo tar -C / -xvzpf -
# or the debian package
wget https://github.com/fortio/fortio/releases/download/v1.57.1/fortio_1.57.1_amd64.deb
dpkg -i fortio_1.57.1_amd64.deb
wget https://github.com/fortio/fortio/releases/download/v1.57.2/fortio_1.57.2_amd64.deb
dpkg -i fortio_1.57.2_amd64.deb
# or the rpm
rpm -i https://github.com/fortio/fortio/releases/download/v1.57.1/fortio-1.57.1-1.x86_64.rpm
rpm -i https://github.com/fortio/fortio/releases/download/v1.57.2/fortio-1.57.2-1.x86_64.rpm
# and more, see assets in release page
```

Expand All @@ -76,7 +76,7 @@ On a MacOS you can also install Fortio using [Homebrew](https://brew.sh/):
brew install fortio
```

On Windows, download https://github.com/fortio/fortio/releases/download/v1.57.1/fortio_win_1.57.1.zip and extract `fortio.exe` to any location, then using the Windows Command Prompt:
On Windows, download https://github.com/fortio/fortio/releases/download/v1.57.2/fortio_win_1.57.2.zip and extract `fortio.exe` to any location, then using the Windows Command Prompt:
```
fortio.exe server
```
Expand Down Expand Up @@ -128,7 +128,7 @@ Full list of command line flags (`fortio help`):
<!-- use release/updateFlags.sh to update this section -->
<pre>
<!-- USAGE_START -->
Φορτίο 1.57.1 usage:
Φορτίο 1.57.2 usage:
fortio command [flags] target
where command is one of: load (load testing), server (starts ui, rest api,
http-echo, redirect, proxies, tcp-echo, udp-echo and grpc ping servers),
Expand Down

0 comments on commit 157dfd3

Please sign in to comment.