Skip to content

Commit

Permalink
Merge pull request #3968 from werf/ci-update-release-message-1.1
Browse files Browse the repository at this point in the history
ci(1.1): update release message
  • Loading branch information
ilya-lesikov committed Nov 29, 2021
2 parents 74adfa5 + 8120c65 commit 71819da
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/release_please_1.1.yml
Expand Up @@ -15,5 +15,23 @@ jobs:
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
# release-notes-header: ''
# release-notes-footer: ''
release-notes-header: "## Changelog"
release-notes-footer: |
## Installation
To install `werf` we strongly recommend following [these instructions](https://werf.io/installation.html).
Alternatively, you can download `werf` binaries from here:
* [Linux amd64](https://tuf.werf.io/targets/releases/{{> version }}/linux-amd64/bin/werf) ([PGP signature](https://tuf.werf.io/targets/signatures/{{> version }}/linux-amd64/bin/werf.sig))
* [Linux arm64](https://tuf.werf.io/targets/releases/{{> version }}/linux-arm64/bin/werf) ([PGP signature](https://tuf.werf.io/targets/signatures/{{> version }}/linux-arm64/bin/werf.sig))
* [macOS amd64](https://tuf.werf.io/targets/releases/{{> version }}/darwin-amd64/bin/werf) ([PGP signature](https://tuf.werf.io/targets/signatures/{{> version }}/darwin-amd64/bin/werf.sig))
* [macOS arm64](https://tuf.werf.io/targets/releases/{{> version }}/darwin-arm64/bin/werf) ([PGP signature](https://tuf.werf.io/targets/signatures/{{> version }}/darwin-arm64/bin/werf.sig))
* [Windows amd64](https://tuf.werf.io/targets/releases/{{> version }}/windows-amd64/bin/werf.exe) ([PGP signature](https://tuf.werf.io/targets/signatures/{{> version }}/windows-amd64/bin/werf.exe.sig))
These binaries were signed with PGP and could be verified with the [werf PGP public key](https://werf.io/werf.asc). For example, `werf` binary can be downloaded and verified with `gpg` on Linux with these commands:
```shell
curl -sSLO "https://tuf.werf.io/targets/releases/{{> version }}/linux-amd64/bin/werf" -O "https://tuf.werf.io/targets/signatures/{{> version }}/linux-amd64/bin/werf.sig"
curl -sSL https://werf.io/werf.asc | gpg --import
gpg --verify werf.sig werf
```

0 comments on commit 71819da

Please sign in to comment.