Skip to content

Commit

Permalink
release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloudef committed May 20, 2021
1 parent d5683f3 commit f23597d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 20 deletions.
41 changes: 22 additions & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,25 @@ on:
tags:
- '*.*.*'

sign:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: import pgp key
run: echo -n "$GPG_KEY" | base64 --decode | gpg --import
env:
GPG_KEY: ${{ secrets.GPG_KEY }}
- name: make sign
run: make sign
env:
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
- name: release
uses: softprops/action-gh-release@v1
with:
files: bemenu-*.tar.gz.asc
fail_on_unmatched_files: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
sign:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: import pgp key
run: echo -n "$GPG_KEY" | base64 --decode | gpg --import
env:
GPG_KEY: ${{ secrets.GPG_KEY }}
- name: make sign
run: make sign
env:
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
- name: release
uses: softprops/action-gh-release@v1
with:
files: |
bemenu-*.tar.gz.asc
bemenu-*.tar.gz
fail_on_unmatched_files: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Dynamic menu library and client program inspired by dmenu

![preview](.github/preview.svg)

## Releases

Releases are signed with [29317348D687B86B](http://pgp.mit.edu/pks/lookup?op=vindex&search=0x29317348D687B86B) and published [on GitHub](https://github.com/Cloudef/bemenu/releases).

## Building

```sh
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0

0 comments on commit f23597d

Please sign in to comment.