Skip to content

Commit

Permalink
Merge pull request #102 from ripienaar/060
Browse files Browse the repository at this point in the history
(misc) Release 0.6.0
  • Loading branch information
ripienaar authored Dec 6, 2021
2 parents 127ee3e + e441b96 commit d0c3575
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Choria Release
on:
push:
tags:
- '*'

jobs:
el7_64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: el7_64
packager_tag: el7-go1.17
version: tag

el8_64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: el8_64
packager_tag: el8-go1.17
version: tag

upload:
needs:
- el7_64
- el8_64

runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v2
with:
path: artifacts

- name: Upload artifacts to Spaces
uses: jakejarvis/s3-sync-action@master
with:
args: --endpoint=https://ams3.digitaloceanspaces.com --acl authenticated-read
env:
AWS_S3_BUCKET: choria-packages-ams
AWS_ACCESS_KEY_ID: ${{ secrets.SPACES_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET_ACCESS_KEY }}
SOURCE_DIR: artifacts/foss
DEST_DIR: release
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
|Date |Issue |Description |
|----------|------|---------------------------------------------------------------------------------------------------------|
|2021/12/06| |Release 0.6.0 |
|2021/11/19|99 |Remove Okta and NATS Streaming Server support |
|2021/11/19|99 |Support signed requests using ed25519 public keys |
|2021/11/15|97 |Support client permissions |
|2021/11/05|95 |Support new Choria client tokens |
|2021/08/28|89 |Support signing requests via a Choria Service |
|2021/07/20| |Release 0.5.0 |
|2021/07/20| |Move to `github.com/golang-jwt/jwt` |
|2021/04/16| |Various build tooling updates to support Podman and use go 1.16 everywhere |
Expand Down

0 comments on commit d0c3575

Please sign in to comment.