This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to tag v2.22.0 in repository https://gitbox.apache.org/repos/asf/couchdb-mochiweb.git
commit e3cdf58f5439ca5ffebdc344e0acc5ecc7811e66 Author: Bob Ippolito <[email protected]> AuthorDate: Mon Aug 23 16:13:19 2021 -0700 Attempt to automate hex publish --- .github/workflows/release.yml | 17 +++++++++++++++++ CHANGES.md | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..20e5bfa --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,17 @@ +on: + push: + tags: + - '*' + +jobs: + publish: + if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')" + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v2 + + - name: Publish to Hex.pm + uses: erlangpack/github-action@v1 + env: + HEX_API_KEY: ${{ secrets.HEX_API_KEY }} diff --git a/CHANGES.md b/CHANGES.md index ff3a8b0..b5c61db 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -Version 2.22.0 released XXXX-XX-XX +Version 2.22.0 released 2021-08-23 * Renamed master branch to main * Add unquote_path/1 for separate '+' encoding
