Skip to content

Commit

Permalink
2.2.2-rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
spenes committed Dec 3, 2023
1 parent 811384c commit 4e5b2a2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
release:
name: Release
permissions:
contents: write
strategy:
matrix:
# Quotes are required: https://github.com/actions/setup-go/issues/326#issuecomment-1415719692
Expand Down Expand Up @@ -80,7 +82,7 @@ jobs:

- name: Run Snyk to monitor for vulnerabilities in main Docker image
uses: snyk/actions/docker@master
if: ${{ !contains(github.ref, 'rc') }}
if: ${{ contains(github.ref, 'rc') }}
with:
image: "snowplow/snowbridge:${{ github.ref_name }}"
args: "--app-vulns --org=data-processing-new --project-name=snowbridge-main"
Expand All @@ -90,7 +92,7 @@ jobs:

- name: Run Snyk to monitor for vulnerabilities in aws-only Docker image
uses: snyk/actions/docker@master
if: ${{ !contains(github.ref, 'rc') }}
if: ${{ contains(github.ref, 'rc') }}
with:
image: "snowplow/snowbridge:${{ github.ref_name }}-aws-only"
args: "--app-vulns --org=data-processing-new --project-name=snowbridge-aws-only"
Expand All @@ -101,17 +103,17 @@ jobs:
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ github.token }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
draft: true
prerelease: ${{ contains(github.ref , '-') }}

- name: Upload release binaries
uses: alexellis/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
asset_paths: '["./build/compiled/*"]'

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 2.2.2 (2023-11-30)
Version 2.2.2-rc6 (2023-11-30)
--------------------------
Bump grpc to 1.58.3 (#296)
Bump x/net to 0.17.0 (#297)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ The AWS-specific distribution contains everything, including the Kinesis source,

To comply with the [Amazon Software License](https://github.com/twitchscience/kinsumer/blob/master/LICENSE), you may only use this distribution of Snowbridge _“with the web services, computing platforms or applications provided by Amazon.com, Inc. or its affiliates, including Amazon Web Services, Inc.”_

[release-image]: http://img.shields.io/badge/golang-2.2.2-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/golang-2.2.2-rc6-6ad7e5.svg?style=flat
[releases]: https://github.com/snowplow/snowbridge/releases/
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.2
2.2.2-rc6
2 changes: 1 addition & 1 deletion cmd/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package cmd

const (
// AppVersion is the current version of the app
AppVersion = "2.2.2"
AppVersion = "2.2.2-rc6"

// AppName is the name of the application to use in logging / places that require the artifact
AppName = "snowbridge"
Expand Down

0 comments on commit 4e5b2a2

Please sign in to comment.